home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / tt / emcs1859.zoo / etc / DOC-18.59.4 < prev    next >
Text File  |  1993-02-13  |  236KB  |  4,049 lines

  1. Fopen-termscript
  2. Start writing all terminal output to FILE as well as the terminal.
  3. FILE = nil means just close any termscript file currently open.Fset-screen-height
  4. Tell redisplay that the screen has LINES lines.
  5. Optional second arg non-nil means that redisplay should use LINES lines
  6. but that the idea of the actual height of the screen should not be changed.Fset-screen-width
  7. Tell redisplay that the screen has COLS columns.
  8. Optional second arg non-nil means that redisplay should use COLS columns
  9. but that the idea of the actual width of the screen should not be changed.Fscreen-height
  10. Return number of lines on screen available for display.Fscreen-width
  11. Return number of columns on screen available for display.Fbaud-rate
  12. Return the output baud rate of the terminal.Fsend-string-to-terminal
  13. Send STRING to the terminal without alteration.
  14. Control characters in STRING will have terminal-dependent effects.Fding
  15. Beep, or flash the screen.
  16. Terminates any keyboard macro currently executing unless an argument
  17. is given.Fsleep-for
  18. Pause, without updating display, for ARG seconds.Fsit-for
  19. Perform redisplay, then wait for ARG seconds or until input is available.
  20. Optional second arg non-nil means don't redisplay.
  21. Redisplay is preempted as always if input arrives, and does not happen
  22. if input is available before it starts.
  23. Value is t if waited the full time with no input arriving.Vinverse-video
  24. *Non-nil means use inverse-video.Vvisible-bell
  25. *Non-nil means try to flash the screen to represent a bell.
  26. Note: for X windows, you must use x-set-bell instead.Vno-redraw-on-reenter
  27. *Non-nil means no need to redraw entire screen after suspending.
  28. It is up to you to set this variable to inform Emacs.Vwindow-system
  29. A symbol naming the window-system under which Emacs is running,
  30. (such as `x'), or nil if emacs is running on an ordinary terminal.Vwindow-system-version
  31. Version number of the window system Emacs is running under.Vcursor-in-echo-area
  32. Non-nil means put cursor in minibuffer after any message displayed there.Fredraw-display
  33. Clear the screen and output again what is supposed to appear on it.Vglobal-mode-string
  34. String displayed by mode-line-format's "%m" specifiation.Voverlay-arrow-position
  35. Marker for where to display an arrow on top of the buffer text.
  36. This must be the beginning of a line in order to work.
  37. See also overlay-arrow-string.Voverlay-arrow-string
  38. String to display as an arrow.  See also overlay-arrow-position.Vscroll-step
  39. *The number of lines to try scrolling a window by when point moves out.
  40. If that fails to bring point back on screen, point is centered instead.
  41. If this is zero, point is always centered after it moves off screen.Vreset-terminal-on-clear
  42. Non-nil means re-init terminal modes for clear screen as on entry to Emacs.Vdebug-end-pos
  43. Don't askVtruncate-partial-width-windows
  44. *Non-nil means truncate lines in all windows less than full screen wide.Vmode-line-inverse-video
  45. *Non-nil means use inverse video, or other suitable display mode, for the mode line.Fwindowp
  46. Returns t if OBJ is a window.Fselected-window
  47. Return the window that the cursor now appears in and commands apply to.Fminibuffer-window
  48. Return the window used for minibuffers.Fpos-visible-in-window-p
  49. Return t if position POS is currently on the screen in WINDOW.
  50. Returns nil if that position is scrolled vertically out of view.
  51. POS defaults to point; WINDOW, to the selected window.Fwindow-buffer
  52. Return the buffer that WINDOW is displaying.Fwindow-height
  53. Return the number of lines in WINDOW (including its mode line).Fwindow-width
  54. Return the number of columns in WINDOW.Fwindow-hscroll
  55. Return the number of columns by which WINDOW is scrolled from left margin.Fset-window-hscroll
  56. Set number of columns WINDOW is scrolled from left margin to NCOL.
  57. NCOL should be zero or positive.Fwindow-edges
  58. Return a list of the edge coordinates of WINDOW.
  59. (LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of screen.
  60. RIGHT is one more than the rightmost column used by WINDOW,
  61. and BOTTOM is one more than the bottommost row used by WINDOW
  62.  and its mode-line.Fwindow-point
  63. Return current value of point in WINDOW.
  64. For a nonselected window, this is the value point would have
  65. if that window were selected.
  66.  
  67. Note that, when WINDOW is the selected window and its buffer
  68. is also currently selected, the value returned is the same as (point).
  69. It would be more strictly correct to return the `top-level' value
  70. of point, outside of any  save-excursion  forms.
  71. But that is hard to define.Fwindow-start
  72. Return position at which display currently starts in WINDOW.Fset-window-point
  73. Make point value in WINDOW be at position POS in WINDOW's buffer.Fset-window-start
  74. Make display in WINDOW start at position POS in WINDOW's buffer.
  75. Optional third arg NOFORCE non-nil inhibits next redisplay
  76. from overriding motion of point in order to display at this exact start.Fdelete-window
  77. Remove WINDOW from the display.  Default is selected window.Fnext-window
  78. Return next window after WINDOW in canonical ordering of windows.
  79. Optional second arg MINIBUF t means count the minibuffer window
  80. even if not active.  If MINIBUF is neither t nor nil it means
  81. not to count the minibuffer even if it is active.Fprevious-window
  82. Return previous window before WINDOW in canonical ordering of windows.Fother-window
  83. Select the ARG'th different window.Fget-lru-window
  84. Return the window least recently selected or used for display.Fget-largest-window
  85. Return the largest window in area.Fget-buffer-window
  86. Return a window currently displaying BUFFER, or nil if none.Fdelete-other-windows
  87. Make WINDOW (or the selected window) fill the screen.Fdelete-windows-on
  88. Delete all windows showing BUFFER.Freplace-buffer-in-windows
  89. Replace BUFFER with some other buffer in all windows showing it.Fset-window-buffer
  90. Make WINDOW display BUFFER as its contents.
  91. BUFFER can be a buffer or buffer name.Fselect-window
  92. Select WINDOW.  Most editing will apply to WINDOW's buffer.
  93. That buffer is made current right away.
  94.  
  95. The main editor command loop, before each command,
  96. selects the buffer of the selected window.Fdisplay-buffer
  97. Make BUFFER appear in some window but don't select it.
  98. BUFFER can be a buffer or a buffer name.
  99. If BUFFER is shown already in some window, just uses that one,
  100. unless the window is the selected window and NOTTHISWINDOW is non-nil.
  101. Returns the window displaying BUFFER.Fsplit-window
  102. Split WINDOW, putting SIZE lines in the first of the pair.
  103. WINDOW defaults to selected one and SIZE to half its size.
  104. If optional third arg HOR-FLAG is non-nil, split side by side
  105. and put SIZE columns in the first of the pair.Fenlarge-window
  106. Make current window ARG lines bigger.
  107. From program, optional second arg non-nil means grow sideways ARG columns.Fshrink-window
  108. Make current window ARG lines smaller.
  109. From program, optional second arg non-nil means shrink sideways ARG columns.Fscroll-up
  110. Scroll text of current window upward ARG lines; or near full screen if no ARG.
  111. When calling from a program, supply a number as argument or nil.Fscroll-down
  112. Scroll text of current window downward ARG lines; or near full screen if no ARG.
  113. When calling from a program, supply a number as argument or nil.Fscroll-left
  114. Scroll selected window display ARG columns left.
  115. Default for ARG is window width minus 2.Fscroll-right
  116. Scroll selected window display ARG columns right.
  117. Default for ARG is window width minus 2.Fscroll-other-window
  118. Scroll text of next window upward ARG lines; or near full screen if no ARG.
  119. The next window is the one below the current one; or the one at the top
  120. if the current one is at the bottom.
  121. When calling from a program, supply a number as argument or nil.Frecenter
  122. Center point in window and redisplay screen.  With ARG, put point on line ARG.
  123. The desired position of point is always relative to the current window.
  124. Just C-u as prefix means put point in the center of the screen.
  125. No arg (i.e., it is nil) erases the entire screen and then
  126. redraws with point in the center.Fmove-to-window-line
  127. Position point relative to window.
  128. With no argument, position at text at center of window.
  129. An argument specifies screen line; zero means top of window,
  130. negative means relative to bottom of window.Fset-window-configuration
  131. Restore the configuration of Emacs' windows and buffers to
  132. the state specified by CONFIGURATION.  CONFIGURATION must be a value
  133. retrned by  current-window-configuration  -- see the documentation of that
  134. function for more information.Fcurrent-window-configuration
  135. Return an object representing Emacs' current window configuration,
  136. namely the number of windows, their sizes and current buffers, and for
  137. each displayed buffer, where display starts, and the positions of
  138. point and mark.  An exception is made for point in (current-buffer) --
  139. its value is -not- saved.Fsave-window-excursion
  140. Execute body, preserving window sizes and contents.
  141. Restores which buffer appears in which window, where display starts,
  142. as well as the current buffer.
  143. Does not restore the value of point in current buffer.Vminibuffer-prompt-width
  144. Width of the prompt appearing at the start of the minibuffer window.
  145. The value is meaningless when the minibuffer is not visible.Vtemp-buffer-show-hook
  146. Non-nil means call as function to display a help buffer.
  147. Used by with-output-to-temp-buffer.Vminibuffer-scroll-window
  148. Non-nil means it is the window that C-M-v in minibuffer should scroll.Vpop-up-windows
  149. *Non-nil means display-buffer should make new windows.Vnext-screen-context-lines
  150. *Number of lines of continuity when scrolling by screenfuls.Vsplit-height-threshold
  151. *display-buffer would prefer to split the largest window if this large.
  152. If there is only one window, it is split regardless of this value.Vwindow-min-height
  153. *Delete any window less than this tall (including its mode line).Vwindow-min-width
  154. *Delete any window less than this wide.Fkill-emacs
  155. Exit the Emacs job and kill it.  ARG means no query.
  156. If emacs is running noninteractively and ARG is an integer,
  157. return ARG as the exit program code.Fdump-emacs-data
  158. Dump current state of Emacs into data file FILENAME.
  159. This function exists on systems that use HAVE_SHM.Fdump-emacs
  160. Dump current state of Emacs into executable file FILENAME.
  161. Take symbols from SYMFILE (presumably the file you executed to run Emacs).Vcommand-line-args
  162. Args passed by shell to Emacs, as a list of strings.Vsystem-type
  163. Symbol indicating type of operating system you are using.Vnoninteractive
  164. Non-nil means Emacs is running without interactive terminal.Vkill-emacs-hook
  165. Function called, if non-nil, whenever kill-emacs is called.Frecursive-edit
  166. Invoke the editor command loop recursively.
  167. Do (throw 'exit nil) within the command loop to make this function return,
  168. or (throw 'exit t) to make this function signal an error.
  169. This function is called by the editor initialization
  170. to begin editing.Ftop-level
  171. Exit all recursive editing levels.Fexit-recursive-edit
  172. Exit from the innermost recursive edit or minibuffer.Fabort-recursive-edit
  173. Abort the command that requested this recursive edit or minibuffer input.Fread-key-sequence
  174. Read a sequence of keystrokes and return as a string.
  175. The sequence is sufficient to specify a non-prefix command
  176. starting from the current local and global keymaps.
  177. A C-g typed while in this function is treated like
  178. any other character, and quit-flag is not set.
  179. One arg, PROMPT, a prompt string or  nil, meaning do not prompt specially.Fcommand-execute
  180. Execute CMD as an editor command.
  181. CMD must be a symbol that satisfies the `commandp' predicate.
  182. Optional second arg RECORD-FLAG non-nil
  183. means unconditionally put this command in the command-history.
  184. Otherwise, this is done only if an arg is read using the minibuffer.Fexecute-extended-command
  185. Read function name, then read its arguments and call it.Finput-pending-p
  186. T if command input is currently available with no waiting.
  187. Actually, the value is NIL only if we can be sure that no input is available.Frecent-keys
  188. Return string of last 100 chars read from terminal.Fthis-command-keys
  189. Return string of the keystrokes that invoked this command.Frecursion-depth
  190. Return the current depth in recursive edits.Fopen-dribble-file
  191. Start writing all keyboard characters to FILE.
  192. Use nil as an argument to close the dribble file.Fdiscard-input
  193. Discard the contents of the terminal input buffer.
  194. Also flush any kbd macro definition in progress.Fsuspend-emacs
  195. Stop Emacs and return to superior process.  You can resume.
  196. If optional arg STUFFSTRING is non-nil, its characters are stuffed
  197. to be read as terminal input by Emacs's superior shell.
  198. Before suspending, if `suspend-hook' is bound and value is non-nil
  199. call the value as a function of no args.  Don't suspend if it returns non-nil.
  200. Otherwise, suspend normally and after resumption call
  201. `suspend-resume-hook' if that is bound and non-nil.Fset-input-mode
  202. Set mode of reading keyboard input.
  203. First arg non-nil means use input interrupts; nil means use CBREAK mode.
  204. Second arg non-nil means use ^S/^Q flow control for output to terminal
  205.  (no effect except in CBREAK mode).
  206. Optional third arg non-nil specifies character to use for quitting.
  207.  
  208. Note that the arguments will change incompatibly in version 19.Vdisabled-command-hook
  209. Value is called instead of any command that is disabled
  210. (has a non-nil  disabled  property).Vmeta-flag
  211. *Non-nil means treat 0200 bit in terminal input as Meta bit.Vlast-command-char
  212. Last terminal input character that was part of a command, as an integer.Vlast-input-char
  213. Last terminal input character, as an integer.Vunread-command-char
  214. Character to be read as next input from command input stream, or -1 if none.Vmeta-prefix-char
  215. Meta-prefix character code.  Meta-foo as command input
  216. turns into this character followed by foo.Vlast-command
  217. The last command executed.  Normally a symbol with a function definition,
  218. but can be whatever was found in the keymap, or whatever the variable
  219. `this-command' was set to by that command.Vthis-command
  220. The command now being executed.
  221. The command can set this variable; whatever is put here
  222. will be in  last-command  during the following command.Vauto-save-interval
  223. *Number of keyboard input characters between auto-saves.
  224. Zero means disable autosaving.Vecho-keystrokes
  225. *Nonzero means echo unfinished commands after this many seconds of pause.Vpolling-period
  226. *Interval between polling for input during Lisp execution.
  227. The reason for polling is to make C-g work to stop a running program.
  228. Polling is needed only when using X windows and SIGIO does not work.
  229. Polling is automatically disabled in all other cases.Vhelp-char
  230. Character to recognize as meaning Help.
  231. When it is read, do (eval help-form), and display result if it's a string.
  232. If help-form's value is nil, this char can be read normally.Vhelp-form
  233. Form to execute when character help-char is read.
  234. If the form returns a string, that string is displayed.
  235. If help-form is nil, the help char is not recognized.Vtop-level
  236. Form to evaluate when Emacs starts up.
  237. Useful to set before you dump a modified Emacs.Vkeyboard-translate-table
  238. String used as translate table for keyboard input, or nil.
  239. Each character is looked up in this string and the contents used instead.
  240. If string is of length N, character codes N and up are untranslated.Fstart-kbd-macro
  241. Record subsequent keyboard input, defining a keyboard macro.
  242. The commands are recorded even as they are executed.
  243. Use \[end-kbd-macro] to finish recording and make the macro available.
  244. Use \[name-last-kbd-macro] to give it a permanent name.
  245. Non-nil arg (prefix arg) means append to last macro defined;
  246.  This begins by re-executing that macro as if you typed it again.Fend-kbd-macro
  247. Finish defining a keyboard macro.
  248. The definition was started by \[start-kbd-macro].
  249. The macro is now available for use via \[call-last-kbd-macro],
  250. or it can be given a name with \[name-last-kbd-macro] and then invoked
  251. under that name.
  252. With numeric arg, repeat macro now that many times,
  253. counting the definition just completed as the first repetition.Fcall-last-kbd-macro
  254. Call the last keyboard macro that you defined with \[start-kbd-macro].
  255. To make a macro permanent so you can call it even after
  256. defining others, use \[name-last-kbd-macro].Fexecute-kbd-macro
  257. Execute MACRO as string of editor command characters.
  258. If MACRO is a symbol, its function definition is used.
  259. COUNT is a repeat count, or nil for once, or 0 for infinite loop.Vdefining-kbd-macro
  260. Non-nil means store keyboard input into kbd macro being defined.Vexecuting-macro
  261. Currently executing keyboard macro (a string); nil if none executing.Vexecuting-kbd-macro
  262. Currently executing keyboard macro (a string); nil if none executing.Vlast-kbd-macro
  263. Last kbd macro defined, as a string; nil if none defined.Fmake-keymap
  264. Construct and return a new keymap, a vector of length 256.
  265. All entries in it are nil, meaning "command undefined".Fmake-sparse-keymap
  266. Construct and return a new sparse-keymap list.
  267. Its car is 'keymap and its cdr is an alist of (CHAR . DEFINITION).
  268. Initially the alist is nil.Fkeymapp
  269. Return t if ARG is a keymap.
  270. ! A keymap is a vector of length 256, or a list (keymap . ALIST),
  271. where alist elements look like (CHAR . DEFN).
  272. A symbol whose function definition is a keymap is itself a keymap.Fcopy-keymap
  273. Return a copy of the keymap KEYMAP.
  274. The copy starts out with the same definitions of KEYMAP,
  275. but changing either the copy or KEYMAP does not affect the other.
  276. Any key definitions that are subkeymaps are recursively copied.
  277. However, a key definition which is a symbol whose definition is a keymap
  278. is not copied.Fdefine-key
  279. Args KEYMAP, KEY, DEF.  Define key sequence KEY, in KEYMAP, as DEF.
  280. KEYMAP is a keymap.  KEY is a string meaning a sequence of keystrokes.
  281. DEF is anything that can be a key's definition:
  282.  nil (means key is undefined in this keymap),
  283.  a command (a Lisp function suitable for interactive calling)
  284.  a string (treated as a keyboard macro),
  285.  a keymap (to define a prefix key),
  286.  a list (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP,
  287.  or a symbol.  The symbol's function definition is used as the key's
  288. definition, and may be any of the above (including another symbol).Flookup-key
  289. In keymap KEYMAP, look up key sequence KEY.  Return the definition.
  290. nil means undefined.  See doc of define-key for kinds of definitions.
  291. Number as value means KEY is "too long";
  292. that is, characters in it except for the last one
  293. fail to be a valid sequence of prefix characters in KEYMAP.
  294. The number is how many characters at the front of KEY
  295. it takes to reach a non-prefix command.Fkey-binding
  296. Return the definition for command KEYS in current keymaps.
  297. KEYS is a string, a sequence of keystrokes.
  298. The definition is probably a symbol with a function definition.Flocal-key-binding
  299. Return the definition for command KEYS in current local keymap only.
  300. KEYS is a string, a sequence of keystrokes.
  301. The definition is probably a symbol with a function definition.Fglobal-key-binding
  302. Return the definition for command KEYS in current global keymap only.
  303. KEYS is a string, a sequence of keystrokes.
  304. The definition is probably a symbol with a function definition.Fglobal-set-key
  305. Give KEY a definition of COMMAND.
  306. COMMAND is a symbol naming an interactively-callable function.
  307. KEY is a string representing a sequence of keystrokes.
  308. Note that if KEY has a local definition in the current buffer
  309. that local definition will continue to shadow any global definition.Flocal-set-key
  310. Give KEY a local definition of COMMAND.
  311. COMMAND is a symbol naming an interactively-callable function.
  312. KEY is a string representing a sequence of keystrokes.
  313. The definition goes in the current buffer's local map,
  314. which is shared with other buffers in the same major mode.Fglobal-unset-key
  315. Remove global definition of KEY.
  316. KEY is a string representing a sequence of keystrokes.Flocal-unset-key
  317. Remove local definition of KEY.
  318. KEY is a string representing a sequence of keystrokes.Fdefine-prefix-command
  319. Define SYMBOL as a prefix command.
  320. A keymap is created and stored as SYMBOL's function definition.Fuse-global-map
  321. Selects KEYMAP as the global keymap.Fuse-local-map
  322. Selects KEYMAP as the local keymap.
  323. nil for KEYMAP means no local keymap.Fcurrent-local-map
  324. Return current buffer's local keymap, or nil if it has none.Fcurrent-global-map
  325. Return the current global keymap.Faccessible-keymaps
  326. Find all keymaps accessible via prefix characters from KEYMAP.
  327. Returns a list of elements of the form (KEYS . MAP), where the sequence
  328. KEYS starting from KEYMAP gets you to MAP.  These elements are ordered
  329. so that the KEYS increase in length.  The first element is ("" . KEYMAP).Fkey-description
  330. Return a pretty description of key-sequence KEYS.
  331. Control characters turn into "C-foo" sequences, meta into "M-foo"
  332. spaces are put between sequence elements, etc.Fsingle-key-description
  333. Return a pretty description of command character KEY.
  334. Control characters turn into C-whatever, etc.Ftext-char-description
  335. Return a pretty description of file-character CHAR.
  336. Control characters turn into "^char", etc.Fwhere-is-internal
  337. Return list of key sequences that currently invoke command DEFINITION
  338. in KEYMAP or (current-global-map).  If KEYMAP is nil, only search for
  339. keys in the global map.
  340.  
  341. If FIRSTONLY is non-nil, returns a string representing the first key
  342. sequence found, rather than a list of all possible key sequences.Fwhere-is
  343. Print message listing key sequences that invoke specified command.
  344. Argument is a command definition, usually a symbol with a function definition.Fdescribe-bindings
  345. Show a list of all defined keys, and their definitions.
  346. The list is put in a buffer, which is displayed.Fapropos
  347. Show all symbols whose names contain match for REGEXP.
  348. If optional arg PRED is non-nil, (funcall PRED SYM) is done
  349. for each symbol and a symbol is mentioned if that returns non-nil.
  350. Returns list of symbols found; if third arg NOPRINT is non-nil,
  351. does not display them, just returns the list.Vminibuffer-local-map
  352. Default keymap to use when reading from the minibuffer.Vminibuffer-local-ns-map
  353. The keymap used by the minibuf for local bindings when spaces are not
  354. to be allowed in input string.Vminibuffer-local-completion-map
  355. Keymap to use when reading from the minibuffer with completion.Vminibuffer-local-must-match-map
  356. Keymap to use when reading from the minibuffer with completion and
  357. an exact match of one of the completions is required.Fbuffer-list
  358. Return a list of all buffers.Fget-buffer
  359. Return the buffer named NAME (a string).
  360. It is found by looking up NAME in  buffer-alist.
  361. If there is no buffer named NAME, nil is returned.
  362. NAME may also be a buffer; it is returned.Fget-file-buffer
  363. Return the buffer visiting file FILENAME (a string).
  364. If there is no such buffer, nil is returned.Fget-buffer-create
  365. Like get-buffer but creates a buffer named NAME and returns it if none already exists.Fgenerate-new-buffer
  366. Creates and returns a buffer named NAME if one does not already exist,
  367. else tries adding successive suffixes to NAME until a new buffer-name is
  368. formed, then creates and returns a new buffer with that new name.Fbuffer-name
  369. Return the name of BUFFER, as a string.
  370. No arg means return name of current buffer.Fbuffer-file-name
  371. Return name of file BUFFER is visiting, or NIL if none.
  372. No argument means use current buffer as BUFFER.Fbuffer-local-variables
  373. Return alist of variables that are buffer-local in BUFFER.
  374. No argument means use current buffer as BUFFER.
  375. Each element of the value looks like (SYMBOL . VALUE).
  376. Note that storing new VALUEs in these elements
  377. does not change the local values.Fbuffer-modified-p
  378. Return t if BUFFER is modified since file last read in or saved.
  379. No argument means use current buffer as BUFFER.Fset-buffer-modified-p
  380. Mark current buffer as modified or unmodified according to FLAG.Frename-buffer
  381. Change current buffer's name to NEWNAME (a string).Fother-buffer
  382. Return most recently selected buffer other than BUFFER.
  383. Buffers not visible in windows are preferred to visible buffers.
  384. If no other exists, the buffer *scratch* is returned.
  385. If BUFFER is omitted or nil, some interesting buffer is returned.Fbuffer-flush-undo
  386. Make BUFFER stop keeping undo information.Fbuffer-enable-undo
  387. Start keeping undo information for buffer BUFFER (default is current buffer).Fkill-buffer
  388. One arg, a string or a buffer.  Get rid of the specified buffer.
  389. Any processes that have this buffer as the `process-buffer' are killed
  390. with `delete-process'.Fswitch-to-buffer
  391. Select buffer BUFFER in the current window.
  392. BUFFER may be a buffer or a buffer name.
  393. Optional second arg NORECORD non-nil means
  394. do not put this buffer at the front of the list of recently selected ones.
  395.  
  396. WARNING: This is NOT the way to work on another buffer temporarily
  397. within a Lisp program!  Use `set-buffer' instead.  That avoids messing with
  398. the window-buffer correspondances.Fpop-to-buffer
  399. Select buffer BUFFER in some window, preferably a different one.
  400. If  pop-up-windows  is non-nil, windows can be split to do this.
  401. If second arg  OTHER-WINDOW is non-nil, insist on finding another
  402. window even if BUFFER is already visible in the selected window.Fcurrent-buffer
  403. Return the current buffer as a Lisp buffer object.Fset-buffer
  404. Set the current buffer to the buffer or buffer name supplied as argument.
  405. That buffer will then be the default for editing operations and printing.
  406. This function's effect can't last past end of current command
  407. because returning to command level
  408. selects the chosen buffer of the current window,
  409. and this function has no effect on what buffer that is.
  410. See also `save-excursion' when you want to select a buffer temporarily.
  411. Use `switch-to-buffer' or `pop-to-buffer' for interactive buffer selection.Fbarf-if-buffer-read-only
  412. Signal a  buffer-read-only  error if the current buffer is read-only.Fbury-buffer
  413. Put BUFFER at the end of the list of all buffers.
  414. There it is the least likely candidate for other-buffer to return;
  415. thus, the least likely buffer for \[switch-to-buffer] to select by default.
  416. BUFFER is also removed from the selected window if it was displayed there.Ferase-buffer
  417. Delete the entire contents of the current buffer.Flist-buffers
  418. Display a list of names of existing buffers.
  419. Inserts it in buffer *Buffer List* and displays that.
  420. Note that buffers with names starting with spaces are omitted.
  421. Non-null optional arg FILES-ONLY means mention only file buffers.
  422.  
  423. The M column contains a * for buffers that are modified.
  424. The R column contains a % for buffers that are read-only.Fkill-all-local-variables
  425. Eliminate all the buffer-local variable values of the current buffer.
  426. This buffer will then see the default values of all variables.Vdefault-mode-line-format
  427. Default mode-line-format for buffers that do not override it.
  428. This is the same as (default-value 'mode-line-format).Vdefault-abbrev-mode
  429. Default abbrev-mode for buffers that do not override it.
  430. This is the same as (default-value 'abbrev-mode).Vdefault-ctl-arrow
  431. Default ctl-arrow for buffers that do not override it.
  432. This is the same as (default-value 'ctl-arrow).Vdefault-meta-printable
  433. Default meta-printable for buffers that do not override it.
  434. This is the same as (default-value 'meta-printable).Vdefault-truncate-lines
  435. Default truncate-lines for buffers that do not override it.
  436. This is the same as (default-value 'truncate-lines).Vdefault-fill-column
  437. Default fill-column for buffers that do not override it.
  438. This is the same as (default-value 'fill-column).Vdefault-left-margin
  439. Default left-margin for buffers that do not override it.
  440. This is the same as (default-value 'left-margin).Vdefault-tab-width
  441. Default tab-width for buffers that do not override it.
  442. This is the same as (default-value 'tab-width).Vdefault-case-fold-search
  443. Default case-fold-search for buffers that do not override it.
  444. This is the same as (default-value 'case-fold-search).Vmode-line-format
  445. Template for displaying mode line for current buffer.
  446. Each buffer has its own value of this variable.
  447. Value may be a string, a symbol or a list or cons cell.
  448. For a symbol, its value is used (but it is ignored if t or nil).
  449.  A string appearing directly as the value of a symbol is processed verbatim
  450.  in that the %-constructs below are not recognized.
  451. For a list whose car is a symbol, the symbol's value is taken,
  452.  and if that is non-nil, the cadr of the list is processed recursively.
  453.  Otherwise, the caddr of the list (if there is one) is processed.
  454. For a list whose car is a string or list, each element is processed
  455.  recursively and the results are effectively concatenated.
  456. For a list whose car is an integer, the cdr of the list is processed
  457.   and padded (if the number is positive) or truncated (if negative)
  458.   to the width specified by that number.
  459. A string is printed verbatim in the mode line except for %-constructs:
  460.   (%-constructs are allowed when the string is the entire mode-line-format
  461.    or when it is found in a cons-cell or a list)
  462.   %b -- print buffer name.      %f -- print visited file name.
  463.   %* -- print *, % or hyphen.   %m -- print value of mode-name (obsolete).
  464.   %s -- print process status.   %M -- print value of global-mode-string. (obs)
  465.   %p -- print percent of buffer above top of window, or top, bot or all.
  466.   %n -- print Narrow if appropriate.
  467.   %[ -- print one [ for each recursive editing level.  %] similar.
  468.   %% -- print %.   %- -- print infinitely many dashes.
  469. Decimal digits after the % specify field width to which to pad.Vdefault-major-mode
  470. *Major mode for new buffers.  Defaults to fundamental-mode.
  471. nil here means use current buffer's major mode.Vmajor-mode
  472. Symbol for current buffer's major mode.Vabbrev-mode
  473. Non-nil turns on automatic expansion of abbrevs when inserted.
  474. Automatically becomes local when set in any fashion.Vcase-fold-search
  475. *Non-nil if searches should ignore case.
  476. Automatically becomes local when set in any fashion.Vmode-name
  477. Pretty name of current buffer's major mode (a string).Vfill-column
  478. *Column beyond which automatic line-wrapping should happen.
  479. Automatically becomes local when set in any fashion.Vleft-margin
  480. *Column for the default indent-line-function to indent to.
  481. Linefeed indents to this column in Fundamental mode.
  482. Automatically becomes local when set in any fashion.Vtab-width
  483. *Distance between tab stops (for display of tab characters), in columns.
  484. Automatically becomes local when set in any fashion.Vctl-arrow
  485. *t means display control chars with uparrow.
  486. Nil means use backslash and octal digits.
  487. Automatically becomes local when set in any fashion.Vmeta-printable
  488. *Non-nil means meta characters, that is characters in the range 
  489. 0200..0377, are printable.
  490. Nil means display meta chars with backslash and octal digits.
  491. Automatically becomes local when set in any fashion.Vtruncate-lines
  492. *Non-nil means do not display continuation lines;
  493. give each line of text one screen line.
  494. Automatically becomes local when set in any fashion.
  495.  
  496. Note that this is overridden by the variable
  497. truncate-partial-width-windows if that variable is non-nil
  498. and this buffer is not full-screen width.Vdefault-directory
  499. Name of default directory of current buffer.  Should end with slash.Vauto-fill-hook
  500. Function called (if non-nil) after self-inserting a space at column beyond fill-columnVbuffer-file-name
  501. Name of file visited in current buffer, or nil if not visiting a file.Vbuffer-auto-save-file-name
  502. Name of file for auto-saving current buffer,
  503. or nil if buffer should not be auto-saved.Vbuffer-read-only
  504. Non-nil if this buffer is read-only.Vbuffer-backed-up
  505. Non-nil if this buffer's file has been backed up.
  506. Backing up is done before the first time the file is saved.Vbuffer-saved-size
  507. Length of current buffer when last read in, saved or auto-saved.
  508. 0 initially.Vselective-display
  509. t enables selective display:
  510.  after a ^M, all the rest of the line is invisible.
  511.  ^M's in the file are written into files as newlines.
  512. Integer n as value means display only lines
  513.  that start with less than n columns of space.
  514. Automatically becomes local when set in any fashion.Vselective-display-ellipses
  515. t means display ... on previous line when a line is invisible.
  516. Automatically becomes local when set in any fashion.Voverwrite-mode
  517. Non-nil if self-insertion should replace existing text.
  518. Automatically becomes local when set in any fashion.Vbuffer-undo-list
  519. List of undo entries in current buffer.Flock-buffer
  520. Locks FILE, if current buffer is modified.
  521. FILE defaults to current buffer's visited file,
  522. or else nothing is done if current buffer isn't visiting a file.Funlock-buffer
  523. Unlocks the file visited in the current buffer,
  524. if it should normally be locked.Ffile-locked-p
  525. Returns nil if the FILENAME is not locked,
  526. t if it is locked by you, else a string of the name of the locker.Fmarker-buffer
  527. Return the buffer that MARKER points into, or nil if none.
  528. Returns nil if MARKER points into a dead buffer.Fmarker-position
  529. Return the position MARKER points at, as a character number.Fset-marker
  530. Position MARKER before character number NUMBER in BUFFER.
  531. BUFFER defaults to the current buffer.
  532. If NUMBER is nil, makes marker point nowhere.
  533. Then it no longer slows down editing in any buffer.
  534. Returns MARKER.Fcopy-marker
  535. Return a new marker pointing at the same place as MARKER.
  536. If argument is a number, makes a new marker pointing
  537. at that position in the current buffer.Fread-from-minibuffer
  538. Read a string from the minibuffer, prompting with string PROMPT.
  539. If optional second arg INITIAL-CONTENTS is non-nil, it is a string
  540.   to be inserted into the minibuffer before reading input.
  541. Third arg KEYMAP is a keymap to use whilst reading; the default is
  542.   minibuffer-local-map.
  543. If fourth arg READ is non-nil, then interpret the result as a lisp object
  544.   and return that object  (ie  (car (read-from-string <input-string>)))Fread-minibuffer
  545. Return a Lisp object read using the minibuffer.
  546. Prompt with PROMPT.  If non-nil, optional second arg INITIAL-CONTENTS
  547. is a string to insert in the minibuffer before reading.Feval-minibuffer
  548. Return value of Lisp expression read using the minibuffer.
  549. Prompt with PROMPT.  If non-nil, optional second arg INITIAL-CONTENTS
  550. is a string to insert in the minibuffer before reading.Fread-string
  551. Read a string from the minibuffer, prompting with string PROMPT.
  552. If non-nil second arg INITIAL-INPUT is a string to insert before reading.Fread-no-blanks-input
  553. Args PROMPT and INIT, strings.  Read a string from the terminal, not allowing blanks.
  554. Prompt with PROMPT, and provide INIT as an initial value of the input string.Fread-command
  555. One arg PROMPT, a string.  Read the name of a command and return as a symbol.
  556. Prompts with PROMPT.Fread-function
  557. One arg PROMPT, a string.  Read the name of a function and return as a symbol.
  558. Prompts with PROMPT.Fread-variable
  559. One arg PROMPT, a string.  Read the name of a user variable and return
  560. it as a symbol.  Prompts with PROMPT.
  561. A user variable is one whose documentation starts with a "*" character.Fread-buffer
  562. One arg PROMPT, a string.  Read the name of a buffer and return as a string.
  563. Prompts with PROMPT.
  564. Optional second arg is value to return if user enters an empty line.
  565. If optional third arg REQUIRE-MATCH is non-nil, only existing buffer names are allowed.Ftry-completion
  566. Return common substring of all completions of STRING in ALIST.
  567. Each car of each element of ALIST is tested to see if it begins with STRING.
  568. All that match are compared together; the longest initial sequence
  569. common to all matches is returned as a string.
  570. If there is no match at all, nil is returned.
  571. For an exact match, t is returned.
  572.  
  573. ALIST can be an obarray instead of an alist.
  574. Then the print names of all symbols in the obarray are the possible matches.
  575.  
  576. If optional third argument PREDICATE is non-nil,
  577. it is used to test each possible match.
  578. The match is a candidate only if PREDICATE returns non-nil.
  579. The argument given to PREDICATE is the alist element or the symbol from the obarray.Fall-completions
  580. Search for partial matches to STRING in ALIST.
  581. Each car of each element of ALIST is tested to see if it begins with STRING.
  582. The value is a list of all the strings from ALIST that match.
  583. ALIST can be an obarray instead of an alist.
  584. Then the print names of all symbols in the obarray are the possible matches.
  585.  
  586. If optional third argument PREDICATE is non-nil,
  587. it is used to test each possible match.
  588. The match is a candidate only if PREDICATE returns non-nil.
  589. The argument given to PREDICATE is the alist element or the symbol from the obarray.Fcompleting-read
  590. Read a string in the minibuffer, with completion.
  591. Args are PROMPT, TABLE, PREDICATE, REQUIRE-MATCH and INITIAL-INPUT.
  592. PROMPT is a string to prompt with; normally it ends in a colon and a space.
  593. TABLE is an alist whose elements' cars are strings, or an obarray (see try-completion).
  594. PREDICATE limits completion to a subset of TABLE; see try-completion for details.
  595. If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
  596.  the input is (or completes to) an element of TABLE.
  597.  If it is also not t, Return does not exit if it does non-null completion.
  598. If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
  599. Case is ignored if ambient value of  completion-ignore-case  is non-nil.Fminibuffer-complete
  600. Complete the minibuffer contents as far as possible.Fminibuffer-complete-and-exit
  601. Complete the minibuffer contents, and maybe exit.
  602. Exit if the name is valid with no completion needed.
  603. If name was completed to a valid match,
  604. a repetition of this command will exit.Fminibuffer-complete-word
  605. Complete the minibuffer contents at most a single word.Fdisplay-completion-list
  606. Display in a buffer the list of completions, COMPLETIONS.
  607. Each element may be just a symbol or string
  608. or may be a list of two strings to be printed as if concatenated.Fminibuffer-completion-help
  609. Display a list of possible completions of the current minibuffer contents.Fself-insert-and-exit
  610. Terminate minibuffer input.Fexit-minibuffer
  611. Terminate this minibuffer argument.Fminibuffer-depth
  612. Return current depth of activations of minibuffer, a nonnegative integer.Vcompletion-auto-help
  613. *Non-nil means automatically provide help for invalid completion input.Vcompletion-ignore-case
  614. Non-nil means don't consider case significant in completion.Venable-recursive-minibuffers
  615. *Non-nil means to allow minibuffers to invoke commands which use
  616. recursive minibuffers.Vminibuffer-completion-table
  617. Alist or obarray used for completion in the minibuffer.Vminibuffer-completion-predicate
  618. Holds PREDICATE argument to completing-read.Vminibuffer-completion-confirm
  619. Non-nil => demand confirmation of completion before exiting minibuffer.Vminibuffer-help-form
  620. Value that help-form takes on inside the minibuffer.Ffile-name-directory
  621. Return the directory component in file name NAME.
  622. Return nil if NAME does not include a directory.
  623. Otherwise returns a directory spec.
  624. Given a Unix syntax file name, returns a string ending in slash;
  625. on VMS, perhaps instead a string ending in :, ] or >.Ffile-name-nondirectory
  626. Return file name NAME sans its directory.
  627. For example, in a Unix-syntax file name,
  628. this is everything after the last slash,
  629. or the entire name if it contains no slash.Ffile-name-as-directory
  630. Return a string representing file FILENAME interpreted as a directory.
  631. This string can be used as the value of default-directory
  632. or passed as second argument to expand-file-name.
  633. For a Unix-syntax file name, just appends a slash.
  634. On VMS, converts "[X]FOO.DIR" to "[X.FOO]", etc.Fdirectory-file-name
  635. Returns the file name of the directory named DIR.
  636. This is the name of the file that holds the data for the directory DIR.
  637. In Unix-syntax, this just removes the final slash.
  638. On VMS, given a VMS-syntax directory name such as "[X.Y]",
  639. returns a file name such as "[X]Y.DIR.1".Fmake-temp-name
  640. Generate temporary name (string) starting with PREFIX (a string).Fexpand-file-name
  641. Convert FILENAME to absolute, and canonicalize it.
  642. Second arg DEFAULT is directory to start with if FILENAME is relative
  643.  (does not start with slash); if DEFAULT is nil or missing,
  644. the current buffer's value of default-directory is used.
  645. Filenames containing . or .. as components are simplified;
  646. initial ~ is expanded.  See also the function  substitute-in-file-name.Fsubstitute-in-file-name
  647. Substitute environment variables referred to in STRING.
  648. A $ begins a request to substitute; the env variable name is the alphanumeric
  649. characters and underscores after the $, or is surrounded by braces.
  650. If a ~ appears following a /, everything through that / is discarded.
  651. On VMS, $ substitution is not done; this function does little and only
  652. duplicates what expand-file-name does.Fcopy-file
  653. Copy FILE to NEWNAME.  Both args strings.
  654. Signals a  file-already-exists  error if NEWNAME already exists,
  655. unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.
  656. A number as third arg means request confirmation if NEWNAME already exists.
  657. This is what happens in interactive use with M-x.
  658. Fourth arg non-nil means give the new file the same last-modified time
  659. that the old one has.  (This works on only some systems.)Fdelete-file
  660. Delete specified file.  One argument, a file name string.
  661. If file has multiple names, it continues to exist with the other names.Frename-file
  662. Rename FILE as NEWNAME.  Both args strings.
  663. If file has names other than FILE, it continues to have those names.
  664. Signals a  file-already-exists  error if NEWNAME already exists
  665. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
  666. A number as third arg means request confirmation if NEWNAME already exists.
  667. This is what happens in interactive use with M-x.Fadd-name-to-file
  668. Give FILE additional name NEWNAME.  Both args strings.
  669. Signals a  file-already-exists  error if NEWNAME already exists
  670. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
  671. A number as third arg means request confirmation if NEWNAME already exists.
  672. This is what happens in interactive use with M-x.Fmake-symbolic-link
  673. Make a symbolic link to TARGET, named LINKNAME.  Both args strings.
  674. There is no completion for LINKNAME, because it is read simply as a string;
  675. this is to enable you to make a link to a relative file name.
  676.  
  677. Signals a  file-already-exists  error if LINKNAME already exists
  678. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
  679. A number as third arg means request confirmation if LINKNAME already exists.
  680. This happens for interactive use with M-x.Fdefine-logical-name
  681. Define the job-wide logical name NAME to have the value STRING.
  682. If STRING is nil or a null string, the logical name NAME is deleted.Fsysnetunam
  683. Open a network connection to PATH using LOGIN as the login string.Ffile-name-absolute-p
  684. Return t if file FILENAME specifies an absolute path name.Ffile-exists-p
  685. Return t if file FILENAME exists.  (This does not mean you can read it.)
  686. See also file-readable-p and file-attributes.Ffile-readable-p
  687. Return t if file FILENAME exists and you can read it.
  688. See also file-exists-p and file-attributes.Ffile-symlink-p
  689. If file FILENAME is the name of a symbolic link
  690. returns the name of the file to which it is linked.
  691. Otherwise returns NIL.Ffile-writable-p
  692. Return t if file FILENAME can be written or created by you.Ffile-directory-p
  693. Return t if file FILENAME is the name of a directory as a file.
  694. A directory name spec may be given instead; then the value is t
  695. if the directory so specified exists and really is a directory.Ffile-modes
  696. Return mode bits of FILE, as an integer.Fset-file-modes
  697. Set mode bits of FILE to MODE (an integer).
  698. Only the 12 low bits of MODE are used.Ffile-newer-than-file-p
  699. Return t if file FILE1 is newer than file FILE2.
  700. If FILE1 does not exist, the answer is nil;
  701. otherwise, if FILE2 does not exist, the answer is t.Finsert-file-contents
  702. Insert contents of file FILENAME after point.
  703. Returns list of absolute pathname and length of data inserted.
  704. If second argument VISIT is non-nil, the buffer's visited filename
  705. and last save file modtime are set, and it is marked unmodified.
  706. If visiting and the file does not exist, visiting is completed
  707. before the error is signaled.Fwrite-region
  708. Write current region into specified file.
  709. When called from a program, takes three arguments:
  710. START, END and FILENAME.  START and END are buffer positions.
  711. Optional fourth argument APPEND if non-nil means
  712.   append to existing file contents (if any).
  713. Optional fifth argument VISIT if t means
  714.   set last-save-file-modtime of buffer to this file's modtime
  715.   and mark buffer not modified.
  716. If VISIT is neither t nor nil, it means do not print
  717.   the "Wrote file" message.Fverify-visited-file-modtime
  718. Return t if last mod time of BUF's visited file matches what BUF records.
  719. This means that the file has not been changed since it was visited or saved.Fclear-visited-file-modtime
  720. Clear out records of last mod time of visited file.
  721. Next attempt to save will certainly not complain of a discrepancy.Fdo-auto-save
  722. Auto-save all buffers that need it.
  723. This is all buffers that have auto-saving enabled
  724. and are changed since last auto-saved.
  725. Auto-saving writes the buffer into a file
  726. so that your editing is not lost if the system crashes.
  727. This file is not the file you visited; that changes only when you save.
  728.  
  729. Non-nil argument means do not print any message if successful.Fset-buffer-auto-saved
  730. Mark current buffer as auto-saved with its current text.
  731. No auto-save file will be written until the buffer changes again.Frecent-auto-save-p
  732. Return t if buffer has been auto-saved since last read in or saved.Fread-file-name-internal
  733. Internal subroutine for read-file-name.  Do not call this.Fread-file-name
  734. Read file name, prompting with PROMPT and completing in directory DIR.
  735. Value is not expanded!  You must call expand-file-name yourself.
  736. Default name to DEFAULT if user enters a null string.
  737. Fourth arg MUSTMATCH non-nil means require existing file's name.
  738.  Non-nil and non-t means also require confirmation after completion.
  739. DIR defaults to current buffer's directory default.Vinsert-default-directory
  740. *Non-nil means when reading a filename start with default dir in minibuffer.Vvms-stmlf-recfm
  741. *Non-nil means write new files with record format `stmlf'.
  742. nil means use format `var'.  This variable is meaningful only on VMS.Fdirectory-files
  743. Return a list of names of files in DIRECTORY.
  744. If FULL is non-NIL, absolute pathnames of the files are returned.
  745. If MATCH is non-NIL, only pathnames containing that regexp are returned.Ffile-name-completion
  746. Complete file name FILE in directory DIR.
  747. Returns the longest string common to all filenames in DIR
  748. that start with FILE.
  749. If there is only one and FILE matches it exactly, returns t.
  750. Returns nil if DIR contains no name starting with FILE.Ffile-name-all-completions
  751. Return a list of all completions of file name FILE in directory DIR.Ffile-name-all-versions
  752. Return a list of all versions of file name FILE in directory DIR.Ffile-attributes
  753. Return a list of attributes of file FILENAME.
  754. Value is nil if specified file cannot be opened.
  755. Otherwise, list elements are:
  756.  0. t for directory, string (name linked to) for symbolic link, or nil.
  757.  1. Number of links to file.
  758.  2. File uid.
  759.  3. File gid.
  760.  4. Last access time, as a list of two integers.
  761.   First integer has high-order 16 bits of time, second has low 16 bits.
  762.  5. Last modification time, likewise.
  763.  6. Last status change time, likewise.
  764.  7. Size in bytes.
  765.  8. File modes, as a string of ten letters or dashes as in ls -l.
  766.  9. t iff file's gid would change if file were deleted and recreated.
  767. 10. inode number.
  768.  
  769. If file does not exists, returns nil.Vcompletion-ignored-extensions
  770. *Completion ignores filenames ending in any string in this list.Fforward-char
  771. Move point right ARG characters (left if ARG negative).
  772. On reaching end of buffer, stop and signal error.Fbackward-char
  773. Move point left ARG characters (right if ARG negative).
  774. On attempt to pass beginning or end of buffer, stop and signal error.Fforward-line
  775. If point is on line i, move to the start of line i + ARG.
  776. If there isn't room, go as far as possible (no error).
  777. Returns the count of lines left to move.
  778. With positive ARG, a non-empty line traversed at end of buffer 
  779.  counts as one line successfully moved (for the return value).Fbeginning-of-line
  780. Move point to beginning of current line.
  781. With argument ARG not nil or 1, move forward ARG - 1 lines first.
  782. If scan reaches end of buffer, stop there without error.Fend-of-line
  783. Move point to end of current line.
  784. With argument ARG not nil or 1, move forward ARG - 1 lines first.
  785. If scan reaches end of buffer, stop there without error.Fdelete-char
  786. Delete the following ARG characters (previous, with negative arg).
  787. Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).
  788. Interactively, ARG is the prefix arg, and KILLFLAG is set if
  789. ARG was explicitly specified.Fdelete-backward-char
  790. Delete the previous ARG characters (following, with negative ARG).
  791. Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).
  792. Interactively, ARG is the prefix arg, and KILLFLAG is set if
  793. ARG was explicitly specified.Fself-insert-command
  794. Insert this character.  Prefix arg is repeat-count.Fnewline
  795. Insert a newline.  With arg, insert that many newlines.
  796. In Auto Fill mode, can break the preceding line if no numeric arg.Vblink-paren-hook
  797. Function called, if non-nil, whenever a char with closeparen syntax is self-inserted.Fupcase
  798. One arg, a character or string.  Convert it to upper case and return that.Fdowncase
  799. One arg, a character or string.  Convert it to lower case and return that.Fcapitalize
  800. One arg, a character or string.  Convert it to capitalized form and return that.
  801. This means that each word's first character is upper case and the rest is lower case.Fupcase-region
  802. Convert the region to upper case.  In programs, wants two arguments.
  803. These arguments specify the starting and ending character numbers of
  804. the region to operate on.  When used as a command, the text between
  805. point and the mark is operated on.Fdowncase-region
  806. Convert the region to lower case.  In programs, wants two arguments.
  807. These arguments specify the starting and ending character numbers of
  808. the region to operate on.  When used as a command, the text between
  809. point and the mark is operated on.Fcapitalize-region
  810. Convert the region to upper case.  In programs, wants two arguments.
  811. These arguments specify the starting and ending character numbers of
  812. the region to operate on.  When used as a command, the text between
  813. point and the mark is operated on.
  814. Capitalized form means each word's first character is upper case
  815. and the rest of it is lower case.Fupcase-word
  816. Convert following word (or ARG words) to upper case, moving over.
  817. With negative argument, convert previous words but do not move.Fdowncase-word
  818. Convert following word (or ARG words) to lower case, moving over.
  819. With negative argument, convert previous words but do not move.Fcapitalize-word
  820. Capitalize the following word (or ARG words), moving over.
  821. This gives the word(s) a first character in upper case
  822. and the rest lower case.
  823. With negative argument, capitalize previous words but do not move.Fcurrent-column
  824. Return the horizontal position of point.  Beginning of line is column 0.
  825. This is calculated by adding together the widths of all the displayed
  826. representations of the character between the start of the previous line
  827. and point.  (eg control characters will have a width of 2 or 4, tabs
  828. will have a variable width)
  829. Ignores finite width of screen, which means that this function may return
  830. values greater than (screen-width).
  831. Whether the line is visible (if `selective-display' is t) has no effect.Findent-to
  832. Indent from point with tabs and spaces until COLUMN is reached.
  833. Always do at least MIN spaces even if that goes past COLUMN;
  834. by default, MIN is zero.Fcurrent-indentation
  835. Return the indentation of the current line.
  836. This is the horizontal position of the character
  837. following any initial whitespace.Fmove-to-column
  838. Move point to column COLUMN in the current line.
  839. COLUMN is calculated by adding together the widths of all the displayed
  840. representations of the character between the start of the previous line
  841. and point.  (eg control characters will have a width of 2 or 4, tabs
  842. will have a variable width)
  843. Ignores finite width of screen, which means that this function may be
  844. passed values greater than (screen-width)Fvertical-motion
  845. Move to start of screen line LINES lines down.
  846. If LINES is negative, this is moving up.
  847. Sets point to position found; this may be start of line
  848.  or just the start of a continuation line.
  849. Returns number of lines moved; may be closer to zero than LINES
  850.  if beginning or end of buffer was reached.Vindent-tabs-mode
  851. *Indentation can insert tabs if this is non-nil.
  852. Setting this variable automatically makes it local to the current buffer.Flooking-at
  853. t if text after point matches regular expression PAT.Fstring-match
  854. Return index of start of first match for REGEXP in STRING, or nil.
  855. If third arg START is non-nil, start search at that index in STRING.
  856. For index of first char beyond the match, do (match-end 0).
  857. match-end and match-beginning also give indices of substrings
  858. matched by parenthesis constructs in the pattern.Fskip-chars-forward
  859. Move point forward, stopping before a char not in CHARS, or at position LIM.
  860. CHARS is like the inside of a [...] in a regular expression
  861. except that ] is never special and \ quotes ^, - or \.
  862. Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter.
  863. With arg "^a-zA-Z", skips nonletters stopping before first letter.Fskip-chars-backward
  864. Move point backward, stopping after a char not in CHARS, or at position LIM.
  865. See skip-chars-forward for details.Fsearch-backward
  866. Search backward from point for STRING.
  867. Set point to the beginning of the occurrence found, and return t.
  868. An optional second argument bounds the search; it is a buffer position.
  869. The match found must not extend before that position.
  870. Optional third argument, if t, means if fail just return nil (no error).
  871.  If not nil and not t, position at limit of search and return nil.
  872. Optional fourth argument is repeat count--search for successive occurrences.
  873. See also the functions match-beginning and match-end and replace-match.Fsearch-forward
  874. Search forward from point for STRING.
  875. Set point to the end of the occurrence found, and return t.
  876. An optional second argument bounds the search; it is a buffer position.
  877. The match found must not extend after that position.
  878. Optional third argument, if t, means if fail just return nil (no error).
  879.   If not nil and not t, move to limit of search and return nil.
  880. Optional fourth argument is repeat count--search for successive occurrences.
  881. See also the functions match-beginning and match-end and replace-match.Fword-search-backward
  882. Search backward from point for STRING, ignoring differences in punctuation.
  883. Set point to the beginning of the occurrence found, and return t.
  884. An optional second argument bounds the search; it is a buffer position.
  885. The match found must not extend before that position.
  886. Optional third argument, if t, means if fail just return nil (no error).
  887.   If not nil and not t, move to limit of search and return nil.
  888. Optional fourth argument is repeat count--search for successive occurrences.Fword-search-forward
  889. Search forward from point for STRING, ignoring differences in punctuation.
  890. Set point to the end of the occurrence found, and return t.
  891. An optional second argument bounds the search; it is a buffer position.
  892. The match found must not extend after that position.
  893. Optional third argument, if t, means if fail just return nil (no error).
  894.   If not nil and not t, move to limit of search and return nil.
  895. Optional fourth argument is repeat count--search for successive occurrences.Fre-search-backward
  896. Search backward from point for match for regular expression REGEXP.
  897. Set point to the beginning of the match, and return t.
  898. The match found is the one starting last in the buffer
  899. and yet ending before the place the origin of the search.
  900. An optional second argument bounds the search; it is a buffer position.
  901. The match found must start at or after that position.
  902. Optional third argument, if t, means if fail just return nil (no error).
  903.   If not nil and not t, move to limit of search and return nil.
  904. Optional fourth argument is repeat count--search for successive occurrences.
  905. See also the functions match-beginning and match-end and replace-match.Fre-search-forward
  906. Search forward from point for regular expression REGEXP.
  907. Set point to the end of the occurrence found, and return t.
  908. An optional second argument bounds the search; it is a buffer position.
  909. The match found must not extend after that position.
  910. Optional third argument, if t, means if fail just return nil (no error).
  911.   If not nil and not t, move to limit of search and return nil.
  912. Optional fourth argument is repeat count--search for successive occurrences.
  913. See also the functions match-beginning and match-end and replace-match.Freplace-match
  914. Replace text matched by last search with NEWTEXT.
  915. If second arg FIXEDCASE is non-nil, do not alter case of replacement text.
  916. Otherwise convert to all caps or cap initials, like replaced text.
  917. If third arg LITERAL is non-nil, insert NEWTEXT literally.
  918. Otherwise treat \ as special:
  919.   \& in NEWTEXT means substitute original matched text,
  920.   \N means substitute match for \(...\) number N,
  921.   \\ means insert one \.
  922. Leaves point at end of replacement text.Fmatch-beginning
  923. Return the character number of start of text matched by last search.
  924. ARG, a number, specifies which parenthesized expression in the last regexp.
  925.  Value is nil if ARGth pair didn't match, or there were less than ARG pairs.
  926. Zero means the entire text matched by the whole regexp or whole string.Fmatch-end
  927. Return the character number of end of text matched by last search.
  928. ARG, a number, specifies which parenthesized expression in the last regexp.
  929.  Value is nil if ARGth pair didn't match, or there were less than ARG pairs.
  930. Zero means the entire text matched by the whole regexp or whole string.Fmatch-data
  931. Return list containing all info on what the last search matched.
  932. Element 2N is (match-beginning N); element 2N + 1 is (match-end N).
  933. All the elements are normally markers, or nil if the Nth pair didn't match.
  934. 0 is also possible, when matching was done with `string-match',
  935. if a match began at index 0 in the string.Fstore-match-data
  936. Set internal data on last search match from elements of LIST.
  937. LIST should have been created by calling match-data previously.Fregexp-quote
  938. Return a regexp string which matches exactly STRING and nothing else.Fundo-boundary
  939. Mark a boundary between units of undo.
  940. An undo command will stop at this point,
  941. but another undo command will undo to the previous boundary.Fprimitive-undo
  942. Undo N records from the front of the list LIST.
  943. Return what remains of the list.Fcons
  944. Create a new cons, give it CAR and CDR as components, and return it.Flist
  945. Return a newly created list whose elements are the arguments (any number).Fmake-list
  946. Return a newly created list of length LENGTH, with each element being INIT.Fmake-vector
  947. Return a newly created vector of length LENGTH, with each element being INIT.Fvector
  948. Return a newly created vector with our arguments (any number) as its elements.Fmake-symbol
  949. Return a newly allocated uninterned symbol whose name is NAME.
  950. Its value and function definition are void, and its property list is NIL.Fmake-marker
  951. Return a newly allocated marker which does not point at any place.Fmake-string
  952. Return a newly created string of length LENGTH, with each element being INIT.
  953. Both LENGTH and INIT must be numbers.Fpurecopy
  954. Make a copy of OBJECT in pure storage.
  955. Recursively copies contents of vectors and cons cells.
  956. Does not copy symbols.Fgarbage-collect
  957. Reclaim storage for Lisp objects no longer needed.
  958. Returns info on amount of space in use:
  959.  ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)
  960.   (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS)
  961. Garbage collection happens automatically if you cons more than
  962. gc-cons-threshold  bytes of Lisp data since previous garbage collection.Vgc-cons-threshold
  963. *Number of bytes of consing between garbage collections.Vpure-bytes-used
  964. Number of bytes of sharable Lisp data allocated so far.Vdata-bytes-used
  965. Number of bytes of unshared memory allocated in this session.Vdata-bytes-free
  966. Number of bytes of unshared memory remaining available in this session.Vpurify-flag
  967. Non-nil means loading Lisp code in order to dump an executable.Vundo-threshold
  968. Keep no more undo information once it exceeds this size.
  969. This threshold is applied when garbage collection happens.
  970. The size is counted as the number of bytes occupied,
  971. which includes both saved text and other data.Vundo-high-threshold
  972. Don't keep more than this much size of undo information.
  973. A command which pushes past this size is itself forgotten.
  974. This threshold is applied when garbage collection happens.
  975. The size is counted as the number of bytes occupied,
  976. which includes both saved text and other data.Feq
  977. T if the two args are the same Lisp object.Fnull
  978. T if OBJECT is nil.Fconsp
  979. T if OBJECT is a cons cell.Fatom
  980. T if OBJECT is not a cons cell.  This includes nil.Flistp
  981. T if OBJECT is a list.  This includes nil.Fnlistp
  982. T if OBJECT is not a list.  Lists include nil.Fintegerp
  983. T if OBJECT is a number.Fnatnump
  984. T if OBJECT is a nonnegative number.Fsymbolp
  985. T if OBJECT is a symbol.Fvectorp
  986. T if OBJECT is a vector.Fstringp
  987. T if OBJECT is a string.Farrayp
  988. T if OBJECT is an array (string or vector).Fsequencep
  989. T if OBJECT is a sequence (list or array).Fbufferp
  990. T if OBJECT is an editor buffer.Fmarkerp
  991. T if OBJECT is a marker (editor pointer).Finteger-or-marker-p
  992. T if OBJECT is an integer or a marker (editor pointer).Fsubrp
  993. T if OBJECT is a built-in function.Fchar-or-string-p
  994. T if OBJECT is a character (a number) or a string.Fcar
  995. Return the car of CONSCELL.  If arg is nil, return nil.Fcar-safe
  996. Return the car of OBJECT if it is a cons cell, or else  nil.Fcdr
  997. Return the cdr of CONSCELL.  If arg is nil, return nil.Fcdr-safe
  998. Return the cdr of OBJECT if it is a cons cell, or else  nil.Fsetcar
  999. Set the car of CONSCELL to be NEWCAR.  Returns NEWCAR.Fsetcdr
  1000. Set the cdr of CONSCELL to be NEWCDR.  Returns NEWCDR.Fboundp
  1001. T if SYMBOL's value is not void.Ffboundp
  1002. T if SYMBOL's function definition is not void.Fmakunbound
  1003. Make SYMBOL's value be void.Ffmakunbound
  1004. Make SYMBOL's function definition be void.Fsymbol-function
  1005. Return SYMBOL's function definition.Fsymbol-plist
  1006. Return SYMBOL's property list.Fsymbol-name
  1007. Return SYMBOL's name, a string.Ffset
  1008. Set SYMBOL's function definition to NEWVAL, and return NEWVAL.Fsetplist
  1009. Set SYMBOL's property list to NEWVAL, and return NEWVAL.Fsymbol-value
  1010. Return SYMBOL's value.Fdefault-value
  1011. Return SYMBOL's default value.
  1012. This is the value that is seen in buffers that do not have their own values
  1013. for this variable.Fset
  1014. Set SYMBOL's value to NEWVAL, and return NEWVAL.Fset-default
  1015. Set SYMBOL's default value to VAL.  SYMBOL and VAL are evaluated.
  1016. The default value is seen in buffers that do not have their own values
  1017. for this variable.Fsetq-default
  1018. Set SYMBOL's default value to VAL.  VAL is evaluated; SYMBOL is not.
  1019. The default value is seen in buffers that do not have their own values
  1020. for this variable.Fmake-variable-buffer-local
  1021. Make VARIABLE have a separate value for each buffer.
  1022. At any time, the value for the current buffer is in effect.
  1023. There is also a default value which is seen in any buffer which has not yet
  1024. set its own value.
  1025. The function `default-value' gets the default value and `set-default' sets it.
  1026. Using `set' or `setq' to set the variable causes it to have a separate value
  1027. for the current buffer if it was previously using the default value.Fmake-local-variable
  1028. Make VARIABLE have a separate value in the current buffer.
  1029. Other buffers will continue to share a common default value.
  1030. See also `make-variable-buffer-local'.Fkill-local-variable
  1031. Make VARIABLE no longer have a separate value in the current buffer.
  1032. From now on the default value will apply in this buffer.Faref
  1033. Return the element of ARRAY at index INDEX.
  1034. ARRAY may be a vector or a string.  INDEX starts at 0.Faset
  1035. Store into the element of ARRAY at index INDEX the value NEWVAL.
  1036. ARRAY may be a vector or a string.  INDEX starts at 0.F=
  1037. T if two args, both numbers, are equal.F<
  1038. T if first arg is less than second arg.  Both must be numbers.F>
  1039. T if first arg is greater than second arg.  Both must be numbers.F<=
  1040. T if first arg is less than or equal to second arg.  Both must be numbers.F>=
  1041. T if first arg is greater than or equal to second arg.  Both must be numbers.F/=
  1042. T if first arg is not equal to second arg.  Both must be numbers.Fzerop
  1043. T if NUMBER is zero.Fint-to-string
  1044. Convert INT to a string by printing it in decimal, with minus sign if negative.Fstring-to-int
  1045. Convert STRING to an integer by parsing it as a decimal number.F+
  1046. Return sum of any number of numbers.F-
  1047. Negate number or subtract numbers.
  1048. With one arg, negates it.  With more than one arg,
  1049. subtracts all but the first from the first.F*
  1050. Returns product of any number of numbers.F/
  1051. Returns first argument divided by rest of arguments.F%
  1052. Returns remainder of first arg divided by second.Fmax
  1053. Return largest of all the arguments (which must be numbers.)Fmin
  1054. Return smallest of all the arguments (which must be numbers.)Flogand
  1055. Return bitwise and of all the arguments (numbers).Flogior
  1056. Return bitwise or of all the arguments (numbers).Flogxor
  1057. Return bitwise exclusive-or of all the arguments (numbers).Fash
  1058. Return VALUE with its bits shifted left by COUNT.
  1059. If COUNT is negative, shifting is actually to the right.
  1060. In this case, the sign bit is duplicated.Flsh
  1061. Return VALUE with its bits shifted left by COUNT.
  1062. If COUNT is negative, shifting is actually to the right.
  1063. In this case,  zeros are shifted in on the left.F1+
  1064. Return NUMBER plus one.F1-
  1065. Return NUMBER minus one.Flognot
  1066. Return the bitwise complement of ARG.Fdocumentation
  1067. Return the documentation string of FUNCTION.Fdocumentation-property
  1068. Return the documentation string that is SYMBOL's PROP property.
  1069. This differs from using `get' only in that it can refer to strings
  1070. stored in the etc/DOC file.FSnarf-documentation
  1071. Used during Emacs initialization, before dumping runnable Emacs,
  1072. to find pointers to doc strings stored in etc/DOC... and
  1073. record them in function definitions.
  1074. One arg, FILENAME, a string which does not include a directory.
  1075. The file is found in ../etc now; found in the exec-directory
  1076. when doc strings are referred to later in the dumped Emacs.Fsubstitute-command-keys
  1077. Return the STRING with substrings of the form \=\[COMMAND]
  1078. replaced by either:  a keystroke sequence that will invoke COMMAND,
  1079. or "M-x COMMAND" if COMMAND is not on any keys.
  1080. Substrings of the form \=\{MAPVAR} are replaced by summaries
  1081. (made by describe-bindings) of the value of MAPVAR, taken as a keymap.
  1082. Substrings of the form \=\<MAPVAR> specify to use the value of MAPVAR
  1083. as the keymap for future \=\[COMMAND] substrings.
  1084. \=\= quotes the following character and is discarded;
  1085. thus, \=\=\=\= puts \=\= into the output, and \=\=\=\[ puts \=\[ into the output.Fchar-to-string
  1086. Convert arg CHAR to a string containing that character.Fstring-to-char
  1087. Convert arg STRING to a character, the first character of that string.Fpoint
  1088. Return value of point, as an integer.
  1089. Beginning of buffer is position (point-min)Fpoint-marker
  1090. Return value of point, as a marker object.Fgoto-char
  1091. One arg, a number.  Set point to that number.
  1092. Beginning of buffer is position (point-min), end is (point-max).Fregion-beginning
  1093. Return position of beginning of region, as an integer.Fregion-end
  1094. Return position of end of region, as an integer.Fmark
  1095. Return this buffer's mark value as integer, or nil if no mark.
  1096. If you are using this in an editing command, you are most likely making
  1097. a mistake; see the documentation of `set-mark'.Fmark-marker
  1098. Return this buffer's mark, as a marker object.
  1099. Watch out!  Moving this marker changes the mark position.
  1100. The marker will not point anywhere if mark is not set.Fset-mark
  1101. Set this buffer's mark to POS.  Don't use this function!
  1102. That is to say, don't use this function unless you want
  1103. the user to see that the mark has moved, and you want the previous
  1104. mark position to be lost.
  1105.  
  1106. Normally, when a new mark is set, the old one should go on the stack.
  1107. This is why most applications should use push-mark, not set-mark.
  1108.  
  1109. Novice programmers often try to use the mark for the wrong purposes.
  1110. The mark saves a location for the user's convenience.
  1111. Most editing commands should not alter the mark.
  1112. To remember a location for internal use in the Lisp program,
  1113. store it in a Lisp variable.  Example:
  1114.  
  1115.    (let ((beg (point))) (forward-line 1) (delete-region beg (point))).Fsave-excursion
  1116. Save point (and mark), execute BODY, then restore point and mark.
  1117. Executes BODY just like PROGN.  Point and mark values are restored
  1118. even in case of abnormal exit (throw or error).Fbuffer-size
  1119. Return the number of characters in the current buffer.Fpoint-min
  1120. Return the minimum permissible value of point in the current buffer.
  1121. This is 1, unless a clipping restriction is in effect.Fpoint-min-marker
  1122. Return a marker to the beginning of the currently visible part of the buffer.
  1123. This is the beginning, unless a clipping restriction is in effect.Fpoint-max
  1124. Return the maximum permissible value of point in the current buffer.
  1125. This is (1+ (buffer-size)), unless a clipping restriction is in effect,
  1126. in which case it is less.Fpoint-max-marker
  1127. Return a marker to the end of the currently visible part of the buffer.
  1128. This is the actual end, unless a clipping restriction is in effect.Ffollowing-char
  1129. Return the character following point, as a number.Fpreceding-char
  1130. Return the character preceding point, as a number.Fbobp
  1131. Return T if point is at the beginning of the buffer.
  1132. If the buffer is narrowed, this means the beginning of the narrowed part.Feobp
  1133. Return T if point is at the end of the buffer.
  1134. If the buffer is narrowed, this means the end of the narrowed part.Fbolp
  1135. Return T if point is at the beginning of a line.Feolp
  1136. Return T if point is at the end of a line.
  1137. `End of a line' includes point being at the end of the buffer.Fchar-after
  1138. One arg, POS, a number.  Return the character in the current buffer
  1139. at position POS.
  1140. If POS is out of range, the value is NIL.Fuser-login-name
  1141. Return the name under which user logged in, as a string.
  1142. This is based on the effective uid, not the real uid.Fuser-real-login-name
  1143. Return the name of the user's real uid, as a string.
  1144. Differs from user-login-name when running under su.Fuser-uid
  1145. Return the effective uid of Emacs, as an integer.Fuser-real-uid
  1146. Return the real uid of Emacs, as an integer.Fuser-full-name
  1147. Return the full name of the user logged in, as a string.Fsystem-name
  1148. Return the name of the machine you are running on, as a string.Fcurrent-time-string
  1149. Return the current time, as a human-readable string.Finsert
  1150. Any number of args, strings or chars.  Insert them after point, moving point forward.Finsert-before-markers
  1151. Any number of args, strings or chars.  Insert them after point,
  1152. moving point forward.  Also, any markers pointing at the insertion point
  1153. get relocated to point after the newly inserted text.Finsert-char
  1154. Insert COUNT (second arg) copies of CHAR (first arg).
  1155. Both arguments are required.Fbuffer-substring
  1156. Return the contents of part of the current buffer as a string.
  1157. The two arguments specify the start and end, as character numbers.Fbuffer-string
  1158. Return the contents of the current buffer as a string.Finsert-buffer-substring
  1159. Insert before point a substring of the contents buffer BUFFER.
  1160. BUFFER may be a buffer or a buffer name.
  1161. Arguments START and END are character numbers specifying the substring.
  1162. They default to the beginning and the end of BUFFER.Fsubst-char-in-region
  1163. From START to END, replace FROMCHAR with TOCHAR each time it occurs.
  1164. If optional arg NOUNDO is non-nil, don't record this change for undo
  1165. and don't mark the buffer as really changed.Fdelete-region
  1166. Delete the text between point and mark.
  1167. When called from a program, expects two arguments,
  1168. character numbers specifying the stretch to be deleted.Fwiden
  1169. Remove restrictions from current buffer, allowing full text to be seen and edited.Fnarrow-to-region
  1170. Restrict editing in this buffer to the current region.
  1171. The rest of the text becomes temporarily invisible and untouchable
  1172. but is not deleted; if you save the buffer in a file, the invisible
  1173. text is included in the file.  \[widen] makes all visible again.
  1174.  
  1175. When calling from a program, pass two arguments; character numbers
  1176. bounding the text that should remain visible.Fsave-restriction
  1177. Execute the body, undoing at the end any changes to current buffer's restrictions.
  1178. Changes to restrictions are made by narrow-to-region or by widen.
  1179. Thus, the restrictions are the same after this function as they were before it.
  1180. The value returned is that returned by the last form in the body.
  1181.  
  1182. This function can be confused if, within the body, you widen
  1183. and then make changes outside the area within the saved restrictions.
  1184.  
  1185. Note: if you are using both save-excursion and save-restriction,
  1186. use save-excursion outermost.Fmessage
  1187. Print a one-line message at the bottom of the screen.
  1188. The first argument is a control string.
  1189. It may contain %s or %d or %c to print successive following arguments.
  1190. %s means print an argument as a string, %d means print as number in decimal,
  1191. %c means print a number as a single character.
  1192. The argument used by %s must be a string or a symbol;
  1193. the argument used by %d or %c must be a number.Fformat
  1194. Format a string out of a control-string and arguments.
  1195. The first argument is a control string.
  1196. It, and subsequent arguments substituted into it, become the value, which is a string.
  1197. It may contain %s or %d or %c to substitute successive following arguments.
  1198. %s means print an argument as a string, %d means print as number in decimal,
  1199. %c means print a number as a single character.
  1200. The argument used by %s must be a string or a symbol;
  1201. the argument used by %d, %b, %o, %x or %c must be a number.Fchar-equal
  1202. T if args (both characters (numbers)) match.  May ignore case.
  1203. Case is ignored if the current buffer specifies to do so.Fgetenv
  1204. Return the value of environment variable VAR, as a string.
  1205. VAR should be a string.  If the environment variable VAR is not defined,
  1206. the value is nil.Finteractive
  1207. Specify a way of parsing arguments for interactive use of a function.
  1208. For example, write
  1209.   (defun fun (arg) "Doc string" (interactive "p") ...use arg...)
  1210. to make arg be the prefix numeric argument when foo is called as a command.
  1211. This is actually a declaration rather than a function;
  1212.  it tells  call-interactively  how to read arguments
  1213.  to pass to the function.
  1214. When actually called,  interactive  just returns nil.
  1215.  
  1216. The argument of  interactive  is usually a string containing a code letter
  1217.  followed by a prompt.  (Some code letters do not use I/O to get
  1218.  the argument and do not need prompts.)  To prompt for multiple arguments,
  1219.  give a code letter, its prompt, a newline, and another code letter, etc.
  1220. If the argument is not a string, it is evaluated to get a list of
  1221.  arguments to pass to the function.
  1222. Just  (interactive)  means pass no args when calling interactively.
  1223.  
  1224. Code letters available are:
  1225. a -- Function name: symbol with a function definition.
  1226. b -- Name of existing buffer.
  1227. B -- Name of buffer, possibly nonexistent.
  1228. c -- Character.
  1229. C -- Command name: symbol with interactive function definition.
  1230. d -- Value of point as number.  Does not do I/O.
  1231. D -- Directory name.
  1232. f -- Existing file name.
  1233. F -- Possibly nonexistent file name.
  1234. k -- Key sequence (string).
  1235. m -- Value of mark as number.  Does not do I/O.
  1236. n -- Number read using minibuffer.
  1237. N -- Prefix arg converted to number, or if none, do like code `n'.
  1238. p -- Prefix arg converted to number.  Does not do I/O.
  1239. P -- Prefix arg in raw form.  Does not do I/O.
  1240. r -- Region: point and mark as 2 numeric args, smallest first.  Does no I/O.
  1241. s -- Any string.
  1242. S -- Any symbol.
  1243. v -- Variable name: symbol that is user-variable-p.
  1244. x -- Lisp expression read but not evaluated.
  1245. X -- Lisp expression read and evaluated.
  1246. In addition, if the first character of the string is '*' then an error is
  1247.  signaled if the buffer is read-only.
  1248.  This happens before reading any arguments.Fcall-interactively
  1249. Call FUNCTION, reading args according to its interactive calling specs.
  1250. The function contains a specification of how to do the argument reading.
  1251. In the case of user-defined functions, this is specified by placing a call
  1252. to the function `interactive' at the top level of the function body.
  1253. See `interactive'.
  1254.  
  1255. Optional second arg RECORD-FLAG non-nil
  1256. means unconditionally put this command in the command-history.
  1257. Otherwise, this is done only if an arg is read using the minibuffer.Fprefix-numeric-value
  1258. Return numeric meaning of raw prefix argument ARG.
  1259. A raw prefix argument is what you get from (interactive "P").Vprefix-arg
  1260. The value of the prefix argument for the next editing command.
  1261. It may be a number, or the symbol - for just a minus sign as arg,
  1262. or a list whose car is a number for just one or more C-U's
  1263. or nil if no argument has been specified.
  1264.  
  1265. You cannot examine this variable to find the argument for this command
  1266. since it has been set to nil by the time you can look.
  1267. Instead, you should use the variable current-prefix-arg, although
  1268. normally commands can get this prefix argument with (interactive "P").Vcurrent-prefix-arg
  1269. The value of the prefix argument for this editing command.
  1270. It may be a number, or the symbol - for just a minus sign as arg,
  1271. or a list whose car is a number for just one or more C-U's
  1272. or nil if no argument has been specified.
  1273. This is what (interactive "P") returns.Vcommand-history
  1274. List of recent commands that read arguments from terminal.
  1275. Each command is represented as a form to evaluate.For
  1276. Eval args until one of them yields non-NIL, then return that value.
  1277. The remaining args are not evalled at all.
  1278. If all args return NIL, return NIL.Fand
  1279. Eval args until one of them yields NIL, then return NIL.
  1280. The remaining args are not evalled at all.
  1281. If no arg yields NIL, return the last arg's value.Fif
  1282. (if C T E...) if C yields non-NIL do T, else do E...
  1283. Returns the value of T or the value of the last of the E's.
  1284. There may be no E's; then if C yields NIL, the value is NIL.Fcond
  1285. (cond CLAUSES...) tries each clause until one succeeds.
  1286. Each clause looks like (C BODY...).  C is evaluated
  1287. and, if the value is non-nil, this clause succeeds:
  1288. then the expressions in BODY are evaluated and the last one's
  1289. value is the value of the cond expression.
  1290. If a clause looks like (C), C's value if non-nil is returned from cond.
  1291. If no clause succeeds, cond returns nil.Fprogn
  1292. Eval arguments in sequence, and return the value of the last one.Fprog1
  1293. Eval arguments in sequence, then return the FIRST arg's value.
  1294. This value is saved during the evaluation of the remaining args,
  1295. whose values are discarded.Fprog2
  1296. Eval arguments in sequence, then return the SECOND arg's value.
  1297. This value is saved during the evaluation of the remaining args,
  1298. whose values are discarded.Fsetq
  1299. (setq SYM VAL SYM VAL ...) sets each SYM to the value of its VAL.
  1300. The SYMs are not evaluated.  Thus (setq x y) sets x to the value of y.
  1301. Each SYM is set before the next VAL is computed.Fquote
  1302. Return the argument, without evaluating it.  (quote x)  yields  x.Ffunction
  1303. Quote a function object.
  1304. Equivalent to the quote function in the interpreter,
  1305. but causes the compiler to compile the argument as a function
  1306. if it is not a symbol.Finteractive-p
  1307. Return t if function in which this appears was called interactively.
  1308. This means that the function was called with call-interactively (which
  1309. includes being called as the binding of a key)
  1310. and input is currently coming from the keyboard (not in keyboard macro).Fdefun
  1311. (defun NAME ARGLIST [DOCSTRING] BODY...) defines NAME as a function.
  1312. The definition is (lambda ARGLIST [DOCSTRING] BODY...).
  1313. See also the function  interactive .Fdefmacro
  1314. (defmacro NAME ARGLIST [DOCSTRING] BODY...) defines NAME as a macro.
  1315. The definition is (macro lambda ARGLIST [DOCSTRING] BODY...).
  1316. When the macro is called, as in (NAME ARGS...),
  1317. the function (lambda ARGLIST BODY...) is applied to
  1318. the list ARGS... as it appears in the expression,
  1319. and the result should be a form to be evaluated instead of the original.Fdefvar
  1320. (defvar SYMBOL INITVALUE DOCSTRING) defines SYMBOL as an advertised variable.
  1321. INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.
  1322. INITVALUE and DOCSTRING are optional.
  1323. If DOCSTRING starts with *, this variable is identified as a user option.
  1324.  This means that M-x set-variable and M-x edit-options recognize it.
  1325. If INITVALUE is missing, SYMBOL's value is not set.Fdefconst
  1326. (defconst SYMBOL INITVALUE DOCSTRING) defines SYMBOL as a constant variable.
  1327. The intent is that programs do not change this value (but users may).
  1328. Always sets the value of SYMBOL to the result of evalling INITVALUE.
  1329. DOCSTRING is optional.
  1330. If DOCSTRING starts with *, this variable is identified as a user option.
  1331.  This means that M-x set-variable and M-x edit-options recognize it.Fuser-variable-p
  1332. Returns t if VARIABLE is intended to be set and modified by users,
  1333. as opposed to by programs.
  1334. Determined by whether the first character of the documentation
  1335. for the variable is "*"Flet*
  1336. (let* VARLIST BODY...) binds variables according to VARLIST then executes BODY.
  1337. The value of the last form in BODY is returned.
  1338. Each element of VARLIST is a symbol (which is bound to NIL)
  1339. or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
  1340. Each VALUEFORM can refer to the symbols already bound by this VARLIST.Flet
  1341. (let VARLIST BODY...) binds variables according to VARLIST then executes BODY.
  1342. The value of the last form in BODY is returned.
  1343. Each element of VARLIST is a symbol (which is bound to NIL)
  1344. or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
  1345. All the VALUEFORMs are evalled before any symbols are bound.Fwhile
  1346. (while TEST BODY...) if TEST yields non-NIL, execute the BODY forms and repeat.Fmacroexpand
  1347. If FORM is a macro call, expand it.
  1348. If the result of expansion is another macro call, expand it, etc.
  1349. Return the ultimate expansion.
  1350. The second optional arg ENVIRONMENT species an environment of macro
  1351. definitions to shadow the loaded ones for use in file byte-compilation.Fcatch
  1352. (catch TAG BODY...) perform BODY allowing nonlocal exits using (throw TAG).
  1353. TAG is evalled to get the tag to use.  throw  to that tag exits this catch.
  1354. Then the BODY is executed.  If no  throw  happens, the value of the last BODY
  1355. form is returned from  catch.  If a  throw  happens, it specifies the value to
  1356. return from  catch.Fthrow
  1357. (throw TAG VALUE): throw to the catch for TAG and return VALUE from it.
  1358. Both TAG and VALUE are evalled.Funwind-protect
  1359. Do BODYFORM, protecting with UNWINDFORMS.
  1360. Usage looks like (unwind-protect BODYFORM UNWINDFORMS...) 
  1361. If BODYFORM completes normally, its value is returned
  1362. after executing the UNWINDFORMS.
  1363. If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.Fcondition-case
  1364. Regain control when an error is signaled.
  1365.  (condition-case VAR BODYFORM HANDLERS...)
  1366. executes BODYFORM and returns its value if no error happens.
  1367. Each element of HANDLERS looks like (CONDITION-NAME BODY...)
  1368. where the BODY is made of Lisp expressions.
  1369. The handler is applicable to an error
  1370. if CONDITION-NAME is one of the error's condition names.
  1371. When a handler handles an error,
  1372. control returns to the condition-case and the handler BODY... is executed
  1373. with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).
  1374. The value of the last BODY form is returned from the condition-case.
  1375. See SIGNAL for more info.Fsignal
  1376. Signal an error.  Args are SIGNAL-NAME, and associated DATA.
  1377. A signal name is a symbol with an  error-conditions  property
  1378. that is a list of condition names.
  1379. A handler for any of those names will get to handle this signal.
  1380. The symbol  error  should always be one of them.
  1381.  
  1382. DATA should be a list.  Its elements are printed as part of the error message.
  1383. If the signal is handled, DATA is made available to the handler.
  1384. See  condition-case.Fcommandp
  1385. T if FUNCTION makes provisions for interactive calling.
  1386. This means it contains a description for how to read arguments to give it.
  1387. The value is nil for an invalid function or a symbol with no function definition.
  1388.  
  1389. Interactively callable functions include strings (treated as keyboard macros),
  1390. lambda-expressions that contain a top-level call to  interactive ,
  1391. autoload definitions made by  autoload  with non-nil fourth argument,
  1392. and some of the built-in functions of Lisp.
  1393.  
  1394. Also, a symbol is commandp if its function definition is commandp.Fautoload
  1395. Define FUNCTION to autoload from FILE.
  1396. FUNCTION is a symbol; FILE is a file name string to pass to  load.
  1397. Third arg DOCSTRING is documentation for the function.
  1398. Fourth arg FROM_KBD if non-nil says function can be called interactively.
  1399. Fifth arg MACRO if non-nil says the function is really a macro.
  1400. Third through fifth args give info about the real definition.
  1401. They default to nil.
  1402. If FUNCTION is already defined other than as an autoload,
  1403. this does nothing and returns nil.Feval
  1404. Evaluate FORM and return its value.Fapply
  1405. Call FUNCTION, passing remaining arguments to it.  The last argument
  1406. is a list of arguments to pass.
  1407. Thus, (apply '+ 1 2 '(3 4)) returns 10.Ffuncall
  1408. Call first argument as a function, passing remaining arguments to it.
  1409. Thus,  (funcall 'cons 'x 'y)  returns  (x . y).Fbacktrace-debug
  1410. Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
  1411. The debugger is entered when that frame exits, if the flag is non-nil.Fbacktrace
  1412. Print a trace of Lisp function calls currently active.
  1413. Output stream used is value of standard-output.Vmax-specpdl-size
  1414. Limit on number of Lisp variable bindings & unwind-protects before error.Vmax-lisp-eval-depth
  1415. Limit on depth in eval, apply and funcall before error.Vquit-flag
  1416. Non-nil causes  eval  to abort, unless  inhibit-quit  is non-nil.
  1417. Typing C-G sets  quit-flag  non-nil, regardless of  inhibit-quit.Vinhibit-quit
  1418. Non-nil inhibits C-g quitting from happening immediately.
  1419. Note that  quit-flag  will still be set by typing C-g,
  1420. so a quit will be signalled as soon as  inhibit-quit  is nil.
  1421. To prevent this happening, set  quit-flag  to nil
  1422. before making  inhibit-quit  nil.Vstack-trace-on-error
  1423. *Non-nil means automatically display a backtrace buffer
  1424. after any error that is handled by the editor command loop.Vdebug-on-error
  1425. *Non-nil means enter debugger if an error is signaled.
  1426. Does not apply to errors handled by condition-case.
  1427. See also variable debug-on-quit.Vdebug-on-quit
  1428. *Non-nil means enter debugger if quit is signaled (C-G, for example).
  1429. Does not apply if quit is handled by a condition-case.Vdebug-on-next-call
  1430. Non-nil means enter debugger before next eval, apply or funcall.Vdebugger
  1431. Function to call to invoke debugger.
  1432. If due to frame exit, args are 'exit and value being returned;
  1433.  this function's value will be returned instead of that.
  1434. If due to error, args are 'error and list of signal's args.
  1435. If due to apply or funcall entry, one arg, 'lambda.
  1436. If due to eval entry, one arg, 't.Vmocklisp-arguments
  1437. While in a mocklisp function, the list of its unevaluated args.Fidentity
  1438. Return the argument unchanged.Frandom
  1439. Return a pseudo-random number.
  1440. On most systems all integers representable in Lisp are equally likely.
  1441.   This is 24 bits' worth.
  1442. On some systems, absolute value of result never exceeds 2 to the 14.
  1443. If optional argument is supplied as  t,
  1444.  the random number seed is set based on the current time and pid.Flength
  1445. Return the length of vector, list or string SEQUENCE.Fstring-equal
  1446. T if two strings have identical contents.
  1447. Symbols are also allowed; their print names are used instead.Fstring-lessp
  1448. T if first arg string is less than second in lexicographic order.
  1449. Symbols are also allowed; their print names are used instead.Fappend
  1450. Concatenate arguments and make the result a list.
  1451. The result is a list whose elements are the elements of all the arguments.
  1452. Each argument may be a list, vector or string.Fconcat
  1453. Concatenate arguments and make the result a string.
  1454. The result is a string whose elements are the elements of all the arguments.
  1455. Each argument may be a string, a list of numbers, or a vector of numbers.Fvconcat
  1456. Concatenate arguments and make the result a vector.
  1457. The result is a vector whose elements are the elements of all the arguments.
  1458. Each argument may be a list, vector or string.Fcopy-sequence
  1459. Return a copy of a list, vector or string.Fcopy-alist
  1460. Return a copy of ALIST.
  1461. This is a new alist which represents the same mapping
  1462. from objects to objects, but does not share the alist structure with ALIST.
  1463. The objects mapped (cars and cdrs of elements of the alist)
  1464. are shared, however.Fsubstring
  1465. Return a substring of STRING, starting at index FROM and ending before TO.
  1466. TO may be nil or omitted; then the substring runs to the end of STRING.
  1467. If FROM or TO is negative, it counts from the end.Fnthcdr
  1468. Takes cdr N times on LIST, returns the result.Fnth
  1469. Returns the Nth element of LIST.
  1470. N counts from zero.  If LIST is not that long, nil is returned.Felt
  1471. Returns element of SEQUENCE at index N.Fmemq
  1472. Returns non-nil if ELT is an element of LIST.  Comparison done with EQ.
  1473. The value is actually the tail of LIST whose car is ELT.Fassq
  1474. Returns non-nil if ELT is the car of an element of LIST.  Comparison done with eq.
  1475. The value is actually the element of LIST whose car is ELT.Fassoc
  1476. Returns non-nil if ELT is the car of an element of LIST.  Comparison done with  equal.
  1477. The value is actually the element of LIST whose car is ELT.Frassq
  1478. Returns non-nil if ELT is the cdr of an element of LIST.  Comparison done with EQ.
  1479. The value is actually the element of LIST whose cdr is ELT.Fdelq
  1480. Deletes by side effect any occurrences of ELT as a member of LIST.
  1481. The modified LIST is returned.
  1482. If the first member of LIST is ELT, there is no way to remove it by side effect;
  1483. therefore, write  (setq foo (delq element foo))  to be sure of changing  foo.Fnreverse
  1484. Reverses LIST by modifying cdr pointers.  Returns the beginning of the reversed list.Freverse
  1485. Reverses LIST, copying.  Returns the beginning of the reversed list.
  1486. See also the function  nreverse, which is used more often.Fsort
  1487. Sort LIST, stably, comparing elements using PREDICATE.
  1488. Returns the sorted list.  LIST is modified by side effects.
  1489. PREDICATE is called with two elements of LIST, and should return T
  1490. if the first element is "less" than the second.Fget
  1491. Return the value of SYMBOL's PROPNAME property.
  1492. This is the last VALUE stored with  (put SYMBOL PROPNAME VALUE).Fput
  1493. Store SYMBOL's PROPNAME property with value VALUE.
  1494. It can be retrieved with  (get SYMBOL PROPNAME).Fequal
  1495. T if two Lisp objects have similar structure and contents.
  1496. They must have the same data type.
  1497. Conses are compared by comparing the cars and the cdrs.
  1498. Vectors and strings are compared element by element.
  1499. Numbers are compared by value.  Symbols must match exactly.Ffillarray
  1500. Store each element of ARRAY with ITEM.  ARRAY is a vector or string.Fnconc
  1501. Concatenate any number of lists by altering them.
  1502. Only the last argument is not altered, and need not be a list.Fmapconcat
  1503. Apply FN to each element of SEQ, and concat the results as strings.
  1504. In between each pair of results, stick in SEP.
  1505. Thus, " " as SEP results in spaces between the values return by FN.Fmapcar
  1506. Apply FUNCTION to each element of LIST, and make a list of the results.
  1507. The result is a list just as long as LIST.Fy-or-n-p
  1508. Ask user a "y or n" question.  Return t if answer is "y".
  1509. Takes one argument, which is the string to display to ask the question.
  1510. It should end in a space; `y-or-n-p' adds `(y or n) ' to it.
  1511. No confirmation of the answer is requested; a single character is enough.
  1512. Also accepts Space to mean yes, or Delete to mean no.Fyes-or-no-p
  1513. Ask user a yes-or-no question.  Return t if answer is yes.
  1514. Takes one argument, which is the string to display to ask the question.
  1515. It should end in a space; `yes-or-no-p' adds `(yes or no) ' to it.
  1516. The user must confirm the answer with RET,
  1517. and can edit it until it as been confirmed.Fload-average
  1518. Return the current 1 minute, 5 minute and 15 minute load averages
  1519. in a list (all floating point load average values are multiplied by 100
  1520. and then turned into integers).Ffeaturep
  1521. Returns t if FEATURE is present in this Emacs.
  1522. Use this to conditionalize execution of lisp code based on the presence or
  1523. absence of emacs or environment extensions.
  1524. Use  provide  to declare that a feature is available.
  1525. This function looks at the value of the variable  features.Fprovide
  1526. Announce that FEATURE is a feature of the current Emacs.Frequire
  1527. If FEATURE is not present in Emacs (ie (featurep FEATURE) is false),
  1528. load FILENAME.  FILENAME is optional and defaults to FEATURE.Vfeatures
  1529. A list of symbols which are the features of the executing emacs.
  1530. Used by  featurep  and  require, and altered by  provide.Fwrite-char
  1531. Output character CHAR to stream STREAM.
  1532. STREAM defaults to the value of `standard-output' (which see).Fwith-output-to-temp-buffer
  1533. Binding `standard-output' to buffer named BUFNAME, execute BODY then display that buffer.
  1534. The buffer is cleared out initially, and marked as unmodified when done.
  1535. All output done by BODY is inserted in that buffer by default.
  1536. It is displayed in another window, but not selected.
  1537. The value of the last form in BODY is returned.
  1538. If variable `temp-buffer-show-hook' is non-nil, call it at the end
  1539. to get the buffer displayed.  It gets one argument, the buffer to display.Fterpri
  1540. Output a newline to STREAM (or value of standard-output).Fprin1
  1541. Output the printed representation of OBJECT, any Lisp object.
  1542. Quoting characters are printed when needed to make output that `read'
  1543. can handle, whenever this is possible.
  1544. Output stream is STREAM, or value of `standard-output' (which see).Fprin1-to-string
  1545. Return a string containing the printed representation of OBJECT,
  1546. any Lisp object.  Quoting characters are used when needed to make output
  1547. that `read' can handle, whenever this is possible.Fprinc
  1548. Output the printed representation of OBJECT, any Lisp object.
  1549. No quoting characters are used; no delimiters are printed around
  1550. the contents of strings.
  1551. Output stream is STREAM, or value of standard-output (which see).Fprint
  1552. Output the printed representation of OBJECT, with newlines around it.
  1553. Quoting characters are printed when needed to make output that `read'
  1554. can handle, whenever this is possible.
  1555. Output stream is STREAM, or value of `standard-output' (which see).Vstandard-output
  1556. Function print uses by default for outputting a character.
  1557. This may be any function of one argument.
  1558. It may also be a buffer (output is inserted before point)
  1559. or a marker (output is inserted and the marker is advanced)
  1560. or the symbol t (output appears in the minibuffer line).Vprint-length
  1561. Maximum length of list to print before abbreviating.`nil' means no limit.Vprint-escape-newlines
  1562. Non-nil means print newlines in strings as backslash-n.Fread-char
  1563. Read a character from the command input (keyboard or macro).
  1564. It is returned as a number.Fget-file-char
  1565. Don't use this yourself.Fload
  1566. Execute a file of Lisp code named FILE.
  1567. First tries FILE with .elc appended, then tries with .el,
  1568.  then tries FILE unmodified.  Searches directories in  load-path.
  1569. If optional second arg NOERROR is non-nil,
  1570.  report no error if FILE doesn't exist.
  1571. Print messages at start and end of loading unless
  1572.  optional third arg NOMESSAGE is non-nil.
  1573. If optional fourth arg NOSUFFIX is non-nil, don't try adding
  1574.  suffixes .elc or .el to the specified name FILE.
  1575. Return t if file exists.Feval-current-buffer
  1576. Execute the current buffer as Lisp code.
  1577. Programs can pass argument PRINTFLAG which controls printing of output:
  1578. nil means discard it; anything else is stream for print.Feval-region
  1579. Execute the region as Lisp code.
  1580. When called from programs, expects two arguments,
  1581. giving starting and ending indices in the current buffer
  1582. of the text to be executed.
  1583. Programs can pass third argument PRINTFLAG which controls printing of output:
  1584. nil means discard it; anything else is stream for print.Fread
  1585. Read one Lisp expression as text from STREAM, return as Lisp object.
  1586. If STREAM is nil, use the value of standard-input (which see).
  1587. STREAM or standard-input may be:
  1588.  a buffer (read from point and advance it)
  1589.  a marker (read from where it points and advance it)
  1590.  a function (call it with no arguments for each character)
  1591.  a string (takes text from string, starting at the beginning)
  1592.  t (read text line using minibuffer and use it).Fread-from-string
  1593. Read one Lisp expression which is represented as text by STRING.
  1594. Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).
  1595. START and END optionally delimit a substring of STRING from which to read;
  1596.  they default to 0 and (length STRING) respectively.Fintern
  1597. Return the symbol whose name is STRING.
  1598. A second optional argument specifies the obarray to use;
  1599. it defaults to the value of  obarray.Fintern-soft
  1600. Return the symbol whose name is STRING, or nil if none exists yet.
  1601. A second optional argument specifies the obarray to use;
  1602. it defaults to the value of  obarray.Fmapatoms
  1603. Call FUNCTION on every symbol in OBARRAY.
  1604. OBARRAY defaults to the value of  obarray.Vobarray
  1605. Symbol table for use by  intern  and  read.
  1606. It is a vector whose length ought to be prime for best results.
  1607. Each element is a list of all interned symbols whose names hash in that bucket.Vvalues
  1608. List of values of all expressions which were read, evaluated and printed.
  1609. Order is reverse chronological.Vstandard-input
  1610. Stream for read to get input from.
  1611. See documentation of read for possible values.Vload-path
  1612. *List of directories to search for files to load.
  1613. Each element is a string (directory name) or nil (try default directory).
  1614. Initialized based on EMACSLOADPATH environment variable, if any,
  1615. otherwise to default specified in by file paths.h when emacs was built.Vload-in-progress
  1616. Non-nil iff inside of  load.Fmake-abbrev-table
  1617. Create a new, empty abbrev table object.Fclear-abbrev-table
  1618. Undefine all abbrevs in abbrev table TABLE, leaving it empty.Fdefine-abbrev
  1619. Define an abbrev in TABLE named NAME, to expand to EXPANSION or call HOOK.
  1620. NAME and EXPANSION are strings.  HOOK is a function or nil.
  1621. To undefine an abbrev, define it with EXPANSION = nilFdefine-global-abbrev
  1622. Define ABBREV as a global abbreviation for EXPANSION.Fdefine-mode-abbrev
  1623. Define ABBREV as a mode-specific abbreviation for EXPANSION.Fabbrev-symbol
  1624. Return the symbol representing abbrev named ABBREV.
  1625. Value is nil if that abbrev is not defined.
  1626. Optional second arg TABLE is abbrev table to look it up in.
  1627. Default is try buffer's mode-specific abbrev table, then global table.Fabbrev-expansion
  1628. Return the string that ABBREV expands into in the current buffer.
  1629. Optionally specify an abbrev table; then ABBREV is looked up in that table only.Fexpand-abbrev
  1630. Expand the abbrev before point, if it is an abbrev.
  1631. Effective when explicitly called even when abbrev-mode is not enabled.
  1632. Returns t if expansion took place.Funexpand-abbrev
  1633. Undo the expansion of the last abbrev that expanded.Finsert-abbrev-table-description
  1634. Insert before point a description of abbrev table named NAME.
  1635. NAME is a symbol whose value is an abbrev table.
  1636. If 2nd arg READABLE is non-nil, a readable description is inserted.
  1637. Otherwise description is an expression,
  1638. a call to define-abbrev-table which would
  1639. define NAME exactly as it is currently defined.Fdefine-abbrev-table
  1640. Define TABNAME (a symbol) as an abbrev table name.
  1641. Define abbrevs in it according to DEFINITIONS, a list of elements
  1642. of the form (ABBREVNAME EXPANSION HOOK USECOUNT).Vabbrev-table-name-list
  1643. List of symbols whose values are  abbrev tables.Vglobal-abbrev-table
  1644. The abbrev table whose abbrevs affect all buffers.
  1645. Each buffer may also have a local abbrev table.
  1646. If it does, the local table overrides the global one
  1647. for any particular abbrev defined in both.Vfundamental-mode-abbrev-table
  1648. The abbrev table of mode-specific abbrevs for Fundamental Mode.Vlast-abbrev
  1649. The abbrev-symbol of the last abbrev expanded.Vlast-abbrev-text
  1650. The exact text of the last abbrev expanded.
  1651. nil if the abbrev has already been unexpanded.Vlast-abbrev-location
  1652. The location of the last abbrev expanded.Vabbrev-start-location
  1653. Buffer position for expand-abbrev to use as the start of the abbrev.
  1654. nil means use the word before point as the abbrev.
  1655. Set to nil each time expand-abbrev is called.Vabbrev-start-location-buffer
  1656. Buffer that abbrev-start-location has been set for.
  1657. Trying to expand an abbrev in any other buffer clears abbrev-start-location.Vlocal-abbrev-table
  1658. Local (mode-specific) abbrev table of current buffer.Vabbrevs-changed
  1659. Set non-nil by defining or altering any word abbrevs.Vabbrev-all-caps
  1660. *Set non-nil means expand multi-word abbrevs all caps if abbrev was so.Fsyntax-table-p
  1661. Return t if ARG is a syntax table.
  1662. Any vector of 256 elements will do.Fsyntax-table
  1663. Return the current syntax table.
  1664. This is the one specified by the current buffer.Fstandard-syntax-table
  1665. Return the standard syntax table.
  1666. This is the one used for new buffers.Fcopy-syntax-table
  1667. Construct a new syntax table and return it.
  1668. It is a copy of the TABLE, which defaults to the standard syntax table.Fset-syntax-table
  1669. Select a new syntax table for the current buffer.
  1670. One argument, a syntax table.Fchar-syntax
  1671. Return the syntax code of CHAR, described by a character.
  1672. For example, if CHAR is a word constituent, ?w is returned.
  1673. The characters that correspond to various syntax codes
  1674. are listed in the documentation of  modify-syntax-entry.Fmodify-syntax-entry
  1675. Set syntax for character CHAR according to string S.
  1676. The syntax is changed only for table TABLE, which defaults to
  1677.  the current buffer's syntax table.
  1678. The first character of S should be one of the following:
  1679.   Space or -   whitespace syntax.    w   word constituent.
  1680.   _            symbol constituent.   .   punctuation.
  1681.   (            open-parenthesis.     )   close-parenthesis.
  1682.   "            string quote.         \   escape character.
  1683.   $            paired delimiter.     '   expression prefix operator.
  1684.   <            comment starter.      >   comment ender.
  1685.   /           character quote.
  1686. Only single-character comment start and end sequences are represented thus.
  1687. Two-character sequences are represented as described below.
  1688. The second character of S is the matching parenthesis,
  1689.  used only if the first character is ( or ).
  1690. Any additional characters are flags.
  1691. Defined flags are the characters 1, 2, 3 and 4.
  1692.  1 means C is the start of a two-char comment start sequence.
  1693.  2 means C is the second character of such a sequence.
  1694.  3 means C is the start of a two-char comment end sequence.
  1695.  4 means C is the second character of such a sequence.Fdescribe-syntax
  1696. Describe the syntax specifications in the syntax table.
  1697. The descriptions are inserted in a buffer, which is selected so you can see it.Fforward-word
  1698. Move point forward ARG words (backward if ARG is negative).
  1699. Normally returns t.
  1700. If an edge of the buffer is reached, point is left there
  1701. and nil is returned.Fscan-lists
  1702. Scan from character number FROM by COUNT lists.
  1703. Returns the character number of the position thus found.
  1704.  
  1705. If DEPTH is nonzero, paren depth begins counting from that value,
  1706. only places where the depth in parentheses becomes zero
  1707. are candidates for stopping; COUNT such places are counted.
  1708. Thus, a positive value for DEPTH means go out levels.
  1709.  
  1710. Comments are ignored if parse-sexp-ignore-comments is non-nil.
  1711.  
  1712. If the beginning or end of (the visible part of) the buffer is reached
  1713. and the depth is wrong, an error is signaled.
  1714. If the depth is right but the count is not used up, nil is returned.Fscan-sexps
  1715. Scan from character number FROM by COUNT balanced expressions.
  1716. Returns the character number of the position thus found.
  1717.  
  1718. Comments are ignored if parse-sexp-ignore-comments is non-nil.
  1719.  
  1720. If the beginning or end of (the visible part of) the buffer is reached
  1721. in the middle of a parenthetical grouping, an error is signaled.
  1722. If the beginning or end is reached between groupings but before count is used up,
  1723. nil is returned.Fbackward-prefix-chars
  1724. Move point backward over any number of chars with syntax "prefix".Fparse-partial-sexp
  1725. Parse Lisp syntax starting at FROM until TO; return status of parse at TO.
  1726. Parsing stops at TO or when certain criteria are met;
  1727.  point is set to where parsing stops.
  1728. If fifth arg STATE is omitted or nil,
  1729.  parsing assumes that FROM is the beginning of a function.
  1730. Value is a list of seven elements describing final state of parsing:
  1731.  1. depth in parens.
  1732.  2. character address of start of innermost containing list; nil if none.
  1733.  3. character address of start of last complete sexp terminated.
  1734.  4. non-nil if inside a string.
  1735.     (it is the character that will terminate the string.)
  1736.  5. t if inside a comment.
  1737.  6. t if following a quote character.
  1738.  7. the minimum paren-depth encountered during this scan.
  1739. If third arg TARGETDEPTH is non-nil, parsing stops if the depth
  1740. in parentheses becomes equal to TARGETDEPTH.
  1741. Fourth arg STOPBEFORE non-nil means stop when come to
  1742.  any character that starts a sexp.
  1743. Fifth arg STATE is a seven-list like what this function returns.
  1744. It is used to initialize the state of the parse.Vparse-sexp-ignore-comments
  1745. Non-nil means forward-sexp, etc., should treat comments as whitespace.
  1746. Non-nil works only when the comment terminator is something like */,
  1747. and appears only when it ends a comment.
  1748. If comments are terminated by newlines,
  1749. you must make this variable nil.Fml-if
  1750. if  for mocklisp programsFml-nargs
  1751. # arguments to this mocklisp functionFml-arg
  1752. Argument #N to this mocklisp function.Fml-interactive
  1753. True if this mocklisp function was called interactively.Fml-provide-prefix-argument
  1754. Evaluate second argument, using first argument as prefix arg value.Fml-prefix-argument-loop
  1755. Fml-substr
  1756. Return a substring of STRING, starting at index FROM and of length LENGTH.
  1757. If either FROM or LENGTH is negative, the length of STRING is added to it.Finsert-string
  1758. Mocklisp-compatibility insert function.
  1759. Like the function `insert' except that any argument that is a number
  1760. is converted into a string by expressing it in decimal.Fbyte-code
  1761. Fprocessp
  1762. Return t if OBJECT is a process.Fget-process
  1763. Return the process named NAME, or nil if there is none.Fget-buffer-process
  1764. Return the (or, a) process associated with BUFFER.
  1765. BUFFER may be a buffer or the name of one.Fdelete-process
  1766. Delete PROCESS: kill it and forget about it immediately.
  1767. PROCESS may be a process or the name of one, or a buffer name.Fprocess-status
  1768. Return the status of PROCESS: a symbol, one of these:
  1769. run  -- for a process that is running.
  1770. stop -- for a process stopped but continuable.
  1771. exit -- for a process that has exited.
  1772. signal -- for a process that has got a fatal signal.
  1773. open -- for a network stream connection that is open.
  1774. closed -- for a network stream connection that is closed.
  1775. nil -- if arg is a process name and no such process exists.Fprocess-exit-status
  1776. Return the exit status of PROCESS or the signal number that killed it.
  1777. If PROCESS has not yet exited or died, return 0.
  1778. If PROCESS is a net connection that was closed remotely, return 256.Fprocess-id
  1779. Return the process id of PROCESS.
  1780. This is the pid of the Unix process which PROCESS uses or talks to.
  1781. For a network connection, this value is nil.Fprocess-name
  1782. Return the name of PROCESS, as a string.
  1783. This is the name of the program invoked in PROCESS,
  1784. possibly modified to make it unique among process names.Fprocess-command
  1785. Return the command that was executed to start PROCESS.
  1786. This is a list of strings, the first string being the program executed
  1787. and the rest of the strings being the arguments given to it.
  1788. For a non-child channel, this is nil.Fset-process-buffer
  1789. Set buffer associated with PROCESS to BUFFER (a buffer, or nil).Fprocess-buffer
  1790. Return the buffer PROCESS is associated with.
  1791. Output from PROCESS is inserted in this buffer
  1792. unless PROCESS has a filter.Fprocess-mark
  1793. Return the marker for the end of the last output from PROCESS.Fset-process-filter
  1794. Give PROCESS the filter function FILTER; nil means no filter.
  1795. When a process has a filter, each time it does output
  1796. the entire string of output is passed to the filter.
  1797. The filter gets two arguments: the process and the string of output.
  1798. If the process has a filter, its buffer is not used for output.Fprocess-filter
  1799. Returns the filter function of PROCESS; nil if none.
  1800. See set-process-filter for more info on filter functions.Fset-process-sentinel
  1801. Give PROCESS the sentinel SENTINEL; nil for none.
  1802. The sentinel is called as a function when the process changes state.
  1803. It gets two arguments: the process, and a string describing the change.Fprocess-sentinel
  1804. Return the sentinel of PROCESS; nil if none.
  1805. See set-process-sentinel for more info on sentinels.Fprocess-kill-without-query
  1806. Say no query needed if PROCESS is running when Emacs is exited.
  1807. Optional second argument if non-nil says to require a query.
  1808. Value is t if a query was formerly required.Flist-processes
  1809. Display a list of all processes.
  1810. (Any processes listed as Exited or Signaled are actually eliminated
  1811. after the listing is made.)Fprocess-list
  1812. Return a list of all processes.Fstart-process
  1813. Start a program in a subprocess.  Return the process object for it.
  1814. Args are NAME BUFFER PROGRAM &rest PROGRAM-ARGS
  1815. NAME is name for process.  It is modified if necessary to make it unique.
  1816. BUFFER is the buffer or (buffer-name) to associate with the process.
  1817.  Process output goes at end of that buffer, unless you specify
  1818.  an output stream or filter function to handle the output.
  1819.  BUFFER may be also nil, meaning that this process is not associated
  1820.  with any buffer
  1821. Third arg is program file name.  It is searched for as in the shell.
  1822. Remaining arguments are strings to give program as arguments.Fopen-network-stream
  1823. Open a TCP connection for a service to a host.
  1824. Returns a subprocess-object to represent the connection.
  1825. Input and output work as for subprocesses; `delete-process' closes it.
  1826. Args are NAME BUFFER HOST SERVICE.
  1827. NAME is name for process.  It is modified if necessary to make it unique.
  1828. BUFFER is the buffer (or buffer-name) to associate with the process.
  1829.  Process output goes at end of that buffer, unless you specify
  1830.  an output stream or filter function to handle the output.
  1831.  BUFFER may be also nil, meaning that this process is not associated
  1832.  with any buffer
  1833. Third arg is name of the host to connect to.
  1834. Fourth arg SERVICE is name of the service desired, or an integer
  1835.  specifying a port number to connect to.Faccept-process-output
  1836. Allow any pending output from subprocesses to be read by Emacs.
  1837. It is read into the process' buffers or given to their filter functions.
  1838. Non-nil arg PROCESS means do not return until some output has been received
  1839. from PROCESS.Fwaiting-for-user-input-p
  1840. Returns non-NIL if emacs is waiting for input from the user.
  1841. This is intended for use by asynchronous process output filters and sentinels.Fprocess-send-region
  1842. Send current contents of region as input to PROCESS.
  1843. PROCESS may be a process name.
  1844. Called from program, takes three arguments, PROCESS, START and END.Fprocess-send-string
  1845. Send PROCESS the contents of STRING as input.
  1846. PROCESS may be a process name.Finterrupt-process
  1847. Interrupt process PROCESS.  May be process or name of one.
  1848. Nil or no arg means current buffer's process.
  1849. Second arg CURRENT-GROUP non-nil means send signal to
  1850. the current process-group of the process's controlling terminal
  1851. rather than to the process's own process group.
  1852. If the process is a shell, this means interrupt current subjob
  1853. rather than the shell.Fkill-process
  1854. Kill process PROCESS.  May be process or name of one.
  1855. See function interrupt-process for more details on usage.Fquit-process
  1856. Send QUIT signal to process PROCESS.  May be process or name of one.
  1857. See function interrupt-process for more details on usage.Fstop-process
  1858. Stop process PROCESS.  May be process or name of one.
  1859. See function interrupt-process for more details on usage.Fcontinue-process
  1860. Continue process PROCESS.  May be process or name of one.
  1861. See function interrupt-process for more details on usage.Fprocess-send-eof
  1862. Make PROCESS see end-of-file in its input.
  1863. Eof comes after any text already sent to it.
  1864. nil or no arg means current buffer's process.Vdelete-exited-processes
  1865. *Non-nil means delete processes immediately when they exit.
  1866. nil means don't delete them until `list-processes' is run.Vprocess-connection-type
  1867. Control type of device used to communicate with subprocesses.
  1868. Values are nil to use a pipe, t for a pty (or pipe if ptys not supported).
  1869. Value takes effect when `start-process' is called.Fcall-process
  1870. Call PROGRAM in separate process.
  1871. Program's input comes from file INFILE (nil means /dev/null).
  1872. Insert output in BUFFER before point; t means current buffer;
  1873.  nil for BUFFER means discard it; 0 means discard and don't wait.
  1874. Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
  1875. Remaining arguments are strings passed as command arguments to PROGRAM.
  1876. Returns nil if BUFFER is 0; otherwise waits for PROGRAM to terminate
  1877. and returns a numeric exit status or a signal description string.
  1878. If you quit, the process is killed with SIGKILL.Fcall-process-region
  1879. Send text from START to END to a process running PROGRAM.
  1880. Delete the text if DELETE is non-nil.
  1881. Insert output in BUFFER before point; t means current buffer;
  1882.  nil for BUFFER means discard it; 0 means discard and don't wait.
  1883. Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.
  1884. Remaining arguments are strings passed as command arguments to PROGRAM.
  1885. Returns nil if BUFFER is 0; otherwise waits for PROGRAM to terminate
  1886. and returns a numeric exit status or a signal description string.
  1887. If you quit, the process is killed with SIGKILL.Vshell-file-name
  1888. *File name to load inferior shells from.
  1889. Initialized from the SHELL environment variable.Vexec-path
  1890. *List of directories to search programs to run in subprocesses.
  1891. Each element is a string (directory name) or nil (try default directory).Vexec-directory
  1892. Directory that holds programs that come with GNU Emacs,
  1893. intended for Emacs to invoke.Vprocess-environment
  1894. List of strings to append to environment of subprocesses that are started.
  1895. Each string should have the format ENVVARNAME=VALUE.Fgetenv
  1896. Return the value of environment variable VAR, as a string.
  1897. When invoked interactively, print the value in the echo area.
  1898. VAR is a string, the name of the variable,
  1899.  or the symbol t, meaning to return an alist representing the
  1900.  current environment.Fsetenv
  1901. Return the value of environment variable VAR, as a string.
  1902. When invoked interactively, print the value in the echo area.
  1903. VAR is a string, the name of the variable.Fopen-line
  1904. Insert a newline and leave point before it.
  1905. With arg, inserts that many newlines.Fsplit-line
  1906. Split current line, moving portion beyond point vertically down.Fquoted-insert
  1907. Read next input character and insert it.
  1908. Useful for inserting control characters.
  1909. You may also type up to 3 octal digits, to insert a character with that codeFdelete-indentation
  1910. Join this line to previous and fix up whitespace at join.
  1911. With argument, join this line to following line.Ffixup-whitespace
  1912. Fixup white space between objects around point.
  1913. Leave one space or none, according to the context.Fdelete-horizontal-space
  1914. Delete all spaces and tabs around point.Fjust-one-space
  1915. Delete all spaces and tabs around point, leaving one space.Fdelete-blank-lines
  1916. On blank line, delete all surrounding blank lines, leaving just one.
  1917. On isolated blank line, delete that one.
  1918. On nonblank line, delete all blank lines that follow it.Fback-to-indentation
  1919. Move point to the first non-whitespace character on this line.Fnewline-and-indent
  1920. Insert a newline, then indent according to major mode.
  1921. Indentation is done using the current indent-line-function.
  1922. In programming language modes, this is the same as TAB.
  1923. In some text modes, where TAB inserts a tab, this indents to the
  1924. specified left-margin column.Freindent-then-newline-and-indent
  1925. Reindent current line, insert newline, then indent the new line.
  1926. Indentation of both lines is done according to the current major mode,
  1927. which means that the current value of indent-line-function is called.
  1928. In programming language modes, this is the same as TAB.
  1929. In some text modes, where TAB inserts a tab, this indents to the
  1930. specified left-margin column.Fbackward-delete-char-untabify
  1931. Delete characters backward, changing tabs into spaces.
  1932. Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil.
  1933. Interactively, ARG is the prefix arg (default 1)
  1934. and KILLP is t if prefix arg is was specified.Fzap-to-char
  1935. Kill up to (but not including) ARG'th occurrence of CHAR.
  1936. Goes backward if ARG is negative; goes to end of buffer if CHAR not found.Fbeginning-of-buffer
  1937. Move point to the beginning of the buffer; leave mark at previous position.
  1938. With arg N, put point N/10 of the way from the true beginning.
  1939. Don't use this in Lisp programs!
  1940. (goto-char (point-min)) is faster and does not set the mark.Fend-of-buffer
  1941. Move point to the end of the buffer; leave mark at previous position.
  1942. With arg N, put point N/10 of the way from the true end.
  1943. Don't use this in Lisp programs!
  1944. (goto-char (point-max)) is faster and does not set the mark.Fmark-whole-buffer
  1945. Put point at beginning and mark at end of buffer.Fcount-lines-region
  1946. Print number of lines in the region.Fwhat-line
  1947. Print the current line number (in the buffer) of point.Fcount-lines
  1948. Return number of newlines between START and END.Fwhat-cursor-position
  1949. Print info on cursor position (on screen and within buffer).Ffundamental-mode
  1950. Major mode not specialized for anything in particular.
  1951. Other major modes are defined by comparison with this one.Feval-expression
  1952. Evaluate EXPRESSION and print value in minibuffer.
  1953. Value is also consed on to front of variable  values  's value.Fedit-and-eval-command
  1954. Prompting with PROMPT, let user edit COMMAND and eval result.
  1955. COMMAND is a Lisp expression.  Let user edit that expression in
  1956. the minibuffer, then read and evaluate the result.Frepeat-complex-command
  1957. Edit and re-evaluate last complex command, or ARGth from last.
  1958. A complex command is one which used the minibuffer.
  1959. The command is placed in the minibuffer as a Lisp form for editing.
  1960. The result is executed, repeating the command as changed.
  1961. If the command has been changed or is not the most recent previous command
  1962. it is added to the front of the command history.
  1963. Whilst editing the command, the following commands are available:
  1964. \{repeat-complex-command-map}Fnext-complex-command
  1965. Inserts the next element of `command-history' into the minibuffer.Fprevious-complex-command
  1966. Inserts the previous element of `command-history' into the minibuffer.Fgoto-line
  1967. Goto line ARG, counting from line 1 at beginning of buffer.Fundo
  1968. Undo some previous changes.
  1969. Repeat this command to undo more changes.
  1970. A numeric argument serves as a repeat count.Fshell-command
  1971. Execute string COMMAND in inferior shell; display output, if any.
  1972. Optional second arg non-nil (prefix arg, if interactive)
  1973. means insert output in current buffer after point (leave mark after it).Fshell-command-on-region
  1974. Execute string COMMAND in inferior shell with region as input.
  1975. Normally display output (if any) in temp buffer;
  1976. Prefix arg means replace the region with it.
  1977. Noninteractive args are START, END, COMMAND, FLAG.
  1978. Noninteractively FLAG means insert output in place of text from START to END,
  1979. and put point at the end, but don't alter the mark.Funiversal-argument
  1980. Begin a numeric argument for the following command.
  1981. Digits or minus sign following \[universal-argument] make up the numeric argument.
  1982. \[universal-argument] following the digits or minus sign ends the argument.
  1983. \[universal-argument] without digits or minus sign provides 4 as argument.
  1984. Repeating \[universal-argument] without digits or minus sign
  1985.  multiplies the argument by 4 each time.Fdigit-argument
  1986. Part of the numeric argument for the next command.
  1987. \[universal-argument] following digits or minus sign ends the argument.Fnegative-argument
  1988. Begin a negative numeric argument for the next command.
  1989. \[universal-argument] following digits or minus sign ends the argument.Fforward-to-indentation
  1990. Move forward ARG lines and position at first nonblank character.Fbackward-to-indentation
  1991. Move backward ARG lines and position at first nonblank character.Fkill-line
  1992. Kill the rest of the current line; if no nonblanks there, kill thru newline.
  1993. With prefix argument, kill that many lines from point.
  1994. Negative arguments kill lines backward.
  1995.  
  1996. When calling from a program, nil means "no arg",
  1997. a number counts as a prefix arg.Vkill-ring
  1998. List of killed text sequences.Vkill-ring-max
  1999. *Maximum length of kill ring before oldest elements are thrown away.Vkill-ring-yank-pointer
  2000. The tail of the kill ring whose car is the last thing yanked.Fkill-region
  2001. Kill between point and mark.
  2002. The text is deleted but saved in the kill ring.
  2003. The command \[yank] can retrieve it from there.
  2004. (If you want to kill and then yank immediately, use \[copy-region-as-kill].)
  2005.  
  2006. This is the primitive for programs to kill text (as opposed to deleting it).
  2007. Supply two arguments, character numbers indicating the stretch of text
  2008.  to be killed.
  2009. Any command that calls this function is a "kill command".
  2010. If the previous command was also a kill command,
  2011. the text killed this time appends to the text killed last time
  2012. to make one entry in the kill ring.Fcopy-region-as-kill
  2013. Save the region as if killed, but don't kill it.Fappend-next-kill
  2014. Cause following command, if kill, to append to previous kill.Frotate-yank-pointer
  2015. Rotate the yanking point in the kill ring.Fyank-pop
  2016. Replace just-yanked stretch of killed-text with a different stretch.
  2017. This command is allowed only immediately after a  yank  or a  yank-pop.
  2018. At such a time, the region contains a stretch of reinserted
  2019. previously-killed text.  yank-pop  deletes that text and inserts in its
  2020. place a different stretch of killed text.
  2021.  
  2022. With no argument, the previous kill is inserted.
  2023. With argument n, the n'th previous kill is inserted.
  2024. If n is negative, this is a more recent kill.
  2025.  
  2026. The sequence of kills wraps around, so that after the oldest one
  2027. comes the newest one.Fyank
  2028. Reinsert the last stretch of killed text.
  2029. More precisely, reinsert the stretch of killed text most recently
  2030. killed OR yanked.
  2031. With just C-U as argument, same but put point in front (and mark at end).
  2032. With argument n, reinsert the nth most recently killed stretch of killed
  2033. text.
  2034. See also the command \[yank-pop].Finsert-buffer
  2035. Insert after point the contents of BUFFER.
  2036. Puts mark after the inserted text.
  2037. BUFFER may be a buffer or a buffer name.Fappend-to-buffer
  2038. Append to specified buffer the text of the region.
  2039. It is inserted into that buffer before its point.
  2040.  
  2041. When calling from a program, give three arguments:
  2042. a buffer or the name of one, and two character numbers
  2043. specifying the portion of the current buffer to be copied.Fprepend-to-buffer
  2044. Prepend to specified buffer the text of the region.
  2045. It is inserted into that buffer after its point.
  2046.  
  2047. When calling from a program, give three arguments:
  2048. a buffer or the name of one, and two character numbers
  2049. specifying the portion of the current buffer to be copied.Fcopy-to-buffer
  2050. Copy to specified buffer the text of the region.
  2051. It is inserted into that buffer, replacing existing text there.
  2052.  
  2053. When calling from a program, give three arguments:
  2054. a buffer or the name of one, and two character numbers
  2055. specifying the portion of the current buffer to be copied.Fmark
  2056. Return this buffer's mark value as integer, or nil if no mark.
  2057. If you are using this in an editing command, you are most likely making
  2058. a mistake; see the documentation of `set-mark'.Fset-mark
  2059. Set this buffer's mark to POS.  Don't use this function!
  2060. That is to say, don't use this function unless you want
  2061. the user to see that the mark has moved, and you want the previous
  2062. mark position to be lost.
  2063.  
  2064. Normally, when a new mark is set, the old one should go on the stack.
  2065. This is why most applications should use push-mark, not set-mark.
  2066.  
  2067. Novice emacs-lisp programmers often try to use the mark for the wrong
  2068. purposes.  The mark saves a location for the user's convenience.
  2069. Most editing commands should not alter the mark.
  2070. To remember a location for internal use in the Lisp program,
  2071. store it in a Lisp variable.  Example:
  2072.  
  2073.    (let ((beg (point))) (forward-line 1) (delete-region beg (point))).Vmark-ring
  2074. The list of saved former marks of the current buffer,
  2075. most recent first.Vmark-ring-max
  2076. *Maximum size of mark ring.  Start discarding off end if gets this big.Fset-mark-command
  2077. Set mark at where point is, or jump to mark.
  2078. With no prefix argument, set mark, and push previous mark on mark ring.
  2079. With argument, jump to mark, and pop into mark off the mark ring.
  2080.  
  2081. Novice emacs-lisp programmers often try to use the mark for the wrong
  2082. purposes.  See the documentation of `set-mark' for more information.Fpush-mark
  2083. Set mark at LOCATION (point, by default) and push old mark on mark ring.
  2084. Displays "Mark set" unless the optional second arg NOMSG is non-nil.
  2085.  
  2086. Novice emacs-lisp programmers often try to use the mark for the wrong
  2087. purposes.  See the documentation of `set-mark' for more information.Fpop-mark
  2088. Pop off mark ring into the buffer's actual mark.
  2089. Does not set point.  Does nothing if mark ring is empty.Fexchange-point-and-mark
  2090. Put the mark where point is now, and point where the mark is now.Fnext-line
  2091. Move cursor vertically down ARG lines.
  2092. If there is no character in the target line exactly under the current column,
  2093. the cursor is positioned after the character in that line which spans this
  2094. column, or at the end of the line if it is not long enough.
  2095. If there is no line in the buffer after this one,
  2096. a newline character is inserted to create a line
  2097. and the cursor moves to that line.
  2098.  
  2099. The command \[set-goal-column] can be used to create
  2100. a semipermanent goal column to which this command always moves.
  2101. Then it does not try to move vertically.
  2102.  
  2103. If you are thinking of using this in a Lisp program, consider
  2104. using `forward-line' instead.  It is usually easier to use
  2105. and more reliable (no dependence on goal column, etc.).Fprevious-line
  2106. Move cursor vertically up ARG lines.
  2107. If there is no character in the target line exactly over the current column,
  2108. the cursor is positioned after the character in that line which spans this
  2109. column, or at the end of the line if it is not long enough.
  2110.  
  2111. The command \[set-goal-column] can be used to create
  2112. a semipermanent goal column to which this command always moves.
  2113. Then it does not try to move vertically.
  2114.  
  2115. If you are thinking of using this in a Lisp program, consider using
  2116. `forward-line' with negative argument instead..  It is usually easier
  2117. to use and more reliable (no dependence on goal column, etc.).Vtrack-eol
  2118. *Non-nil means vertical motion starting at the end of a line should keep to ends of lines.
  2119. This means moving to the end of each line moved onto.Vgoal-column
  2120. *Semipermanent goal column for vertical motion, as set by \[set-goal-column], or nil.Vtemporary-goal-column
  2121. Current goal column for vertical motion.
  2122. It is the column where point was at the start of current run of vertical motion commands.Fset-goal-column
  2123. Set the current horizontal position as a goal for \[next-line] and \[previous-line].
  2124. Those commands will move to this position in the line moved to
  2125. rather than trying to keep the same horizontal position.
  2126. With a non-nil argument, clears out the goal column
  2127. so that \[next-line] and \[previous-line] resume vertical motion.Ftranspose-chars
  2128. Interchange characters around point, moving forward one character.
  2129. With prefix arg ARG, effect is to take character before point
  2130. and drag it forward past ARG other characters (backward if ARG negative).
  2131. If no argument and at end of line, the previous two chars are exchanged.Ftranspose-words
  2132. Interchange words around point, leaving point at end of them.
  2133. With prefix arg ARG, effect is to take word before or around point
  2134. and drag it forward past ARG other words (backward if ARG negative).
  2135. If ARG is zero, the words around or after point and around or after mark
  2136. are interchanged.Ftranspose-sexps
  2137. Like \[transpose-words] but applies to sexps.
  2138. Does not work on a sexp that point is in the middle of
  2139. if it is a list or string.Ftranspose-lines
  2140. Exchange current line and previous line, leaving point after both.
  2141. With argument ARG, takes previous line and moves it past ARG lines.
  2142. With argument 0, interchanges line point is in with line mark is in.Vcomment-column
  2143. *Column to indent right-margin comments to.
  2144. Setting this variable automatically makes it local to the current buffer.Vcomment-start
  2145. *String to insert to start a new comment, or nil if no comment syntax defined.Vcomment-start-skip
  2146. *Regexp to match the start of a comment plus everything up to its body.
  2147. If there are any \(...\) pairs, the comment delimiter text is held to begin
  2148. at the place matched by the close of the first pair.Vcomment-end
  2149. *String to insert to end a new comment.
  2150. Should be an empty string if comments are terminated by end-of-line.Vcomment-indent-hook
  2151. Function to compute desired indentation for a comment
  2152. given the character number it starts at.Findent-for-comment
  2153. Indent this line's comment to comment column, or insert an empty comment.Fset-comment-column
  2154. Set the comment column based on point.
  2155. With no arg, set the comment column to the current column.
  2156. With just minus as arg, kill any comment on this line.
  2157. With any other arg, set comment column to indentation of the previous comment
  2158.  and then align or create a comment on this line at that column.Fkill-comment
  2159. Kill the comment on this line, if any.
  2160. With argument, kill comments on that many lines starting with this one.Fbackward-word
  2161. Move backward until encountering the end of a word.
  2162. With argument, do this that many times.
  2163. In programs, it is faster to call forward-word with negative arg.Fmark-word
  2164. Set mark arg words away from point.Fkill-word
  2165. Kill characters forward until encountering the end of a word.
  2166. With argument, do this that many times.Fbackward-kill-word
  2167. Kill characters backward until encountering the end of a word.
  2168. With argument, do this that many times.Vfill-prefix
  2169. *String for filling to insert at front of new line, or nil for none.
  2170. Setting this variable automatically makes it local to the current buffer.Vcomment-multi-line
  2171. *Non-nil means \[indent-new-comment-line] should continue same comment
  2172. on new line, with no new terminator or starter.Findent-new-comment-line
  2173. Break line at point and indent, continuing comment if presently within one.
  2174. The body of the continued comment is indented under the previous comment line.Fauto-fill-mode
  2175. Toggle auto-fill mode.
  2176. With arg, turn auto-fill mode on iff arg is positive.
  2177. In auto-fill mode, inserting a space at a column beyond  fill-column
  2178. automatically breaks the line at a previous space.Fturn-on-auto-fill
  2179. Unconditionally turn on Auto Fill mode.Fset-fill-column
  2180. Set fill-column to current column, or to argument if given.
  2181. fill-column's value is separate for each buffer.Fset-selective-display
  2182. Set selective-display to ARG; clear it if no arg.
  2183. When selective-display is a number > 0,
  2184. lines whose indentation is >= selective-display are not displayed.
  2185. selective-display's value is separate for each buffer.Foverwrite-mode
  2186. Toggle overwrite mode.
  2187. With arg, turn overwrite mode on iff arg is positive.
  2188. In overwrite mode, printing characters typed in replace existing text
  2189. on a one-for-one basis, rather than pushing it to the right.Vblink-matching-paren
  2190. *Non-nil means show matching open-paren when close-paren is inserted.Vblink-matching-paren-distance
  2191. *If non-nil, is maximum distance to search for matching open-paren
  2192. when close-paren is inserted.Fblink-matching-open
  2193. Move cursor momentarily to the beginning of the sexp before point.Fkeyboard-quit
  2194. Signal a  quit  condition.Fset-variable
  2195. Set VARIABLE to VALUE.  VALUE is a Lisp object.
  2196. When using this interactively, supply a Lisp expression for VALUE.
  2197. If you want VALUE to be a string, you must surround it with doublequotes.Vmode-specific-map
  2198. Keymap for characters following C-c.Vhelp-map
  2199. Keymap for characters following the Help key.Fhelp-with-tutorial
  2200. Select the Emacs learn-by-doing tutorial.Fdescribe-key-briefly
  2201. Print the name of the function KEY invokes.  KEY is a string.Fprint-help-return-message
  2202. Display or return message saying how to restore windows after help command.
  2203. Computes a message and applies the argument FUNCTION to it.
  2204. If FUNCTION is nil, applies `message' to it, thus printing it.Fdescribe-key
  2205. Display documentation of the function KEY invokes.  KEY is a string.Fdescribe-mode
  2206. Display documentation of current major mode.Fdescribe-distribution
  2207. Display info on how to obtain the latest version of GNU Emacs.Fdescribe-copying
  2208. Display info on how you may redistribute copies of GNU Emacs.Fdescribe-no-warranty
  2209. Display info on all the kinds of warranty Emacs does NOT have.Fview-emacs-news
  2210. Display info on recent changes to Emacs.Fview-lossage
  2211. Display last 100 input keystrokes.Fhelp-for-help
  2212. You have typed C-h, the help character.  Type a Help option:
  2213.  
  2214. A  command-apropos.   Give a substring, and see a list of commands
  2215.               (functions interactively callable) that contain
  2216.           that substring.  See also the  apropos  command.
  2217. B  describe-bindings.  Display table of all key bindings.
  2218. C  describe-key-briefly.  Type a command key sequence;
  2219.           it prints the function name that sequence runs.
  2220. F  describe-function.  Type a function name and get documentation of it.
  2221. I  info. The  info  documentation reader.
  2222. K  describe-key.  Type a command key sequence;
  2223.           it displays the full documentation.
  2224. L  view-lossage.  Shows last 100 characters you typed.
  2225. M  describe-mode.  Print documentation of current major mode,
  2226.           which describes the commands peculiar to it.
  2227. N  view-emacs-news.  Shows emacs news file.
  2228. S  describe-syntax.  Display contents of syntax table, plus explanations
  2229. T  help-with-tutorial.  Select the Emacs learn-by-doing tutorial.
  2230. V  describe-variable.  Type name of a variable;
  2231.           it displays the variable's documentation and value.
  2232. W  where-is.  Type command name; it prints which keystrokes
  2233.           invoke that command.
  2234. C-c print Emacs copying permission (General Public License).
  2235. C-d print Emacs ordering information.
  2236. C-n print news of recent Emacs changes.
  2237. C-w print information on absence of warranty for GNU Emacs.Fdescribe-function
  2238. Display the full documentation of FUNCTION (a symbol).Fdescribe-variable
  2239. Display the full documentation of VARIABLE (a symbol).Fcommand-apropos
  2240. Like apropos but lists only symbols that are names of commands
  2241. (interactively callable functions).Vdelete-auto-save-files
  2242. *Non-nil means delete a buffer's auto-save file
  2243. when the buffer is saved for real.Vmake-backup-files
  2244. *Create a backup of each file when it is saved for the first time.
  2245. This can be done by renaming the file or by copying.
  2246.  
  2247. Renaming means that Emacs renames the existing file so that it is a
  2248. backup file, then writes the buffer into a new file.  Any other names
  2249. that the old file had will now refer to the backup file.
  2250. The new file is owned by you and its group is defaulted.
  2251.  
  2252. Copying means that Emacs copies the existing file into the backup file,
  2253. then writes the buffer on top of the existing file.  Any other names
  2254. that the old file had will now refer to the new (edited) file.
  2255. The file's owner and group are unchanged.
  2256.  
  2257. The choice of renaming or copying is controlled by the variables
  2258. backup-by-copying, backup-by-copying-when-linked and
  2259. backup-by-copying-when-mismatch.Vbackup-by-copying
  2260. *Non-nil means always use copying to create backup files.
  2261. See documentation of variable  make-backup-files.Vbackup-by-copying-when-linked
  2262. *Non-nil means use copying to create backups for files with multiple names.
  2263. This causes the alternate names to refer to the latest version as edited.
  2264. This variable is relevant only if  backup-by-copying  is nil.Vbackup-by-copying-when-mismatch
  2265. *Non-nil means create backups by copying if this preserves owner or group.
  2266. Renaming may still be used (subject to control of other variables)
  2267. when it would not result in changing the owner or group of the file;
  2268. that is, for files which are owned by you and whose group matches
  2269. the default for a new file created there by you.
  2270. This variable is relevant only if  backup-by-copying  is nil.Vbuffer-offer-save
  2271. *Non-nil in a buffer means offer to save the buffer on exit
  2272. even if the buffer is not visiting a file.  Automatically local in
  2273. all buffers.Vfile-precious-flag
  2274. *Non-nil means protect against I/O errors while saving files.
  2275. Some modes set this non-nil in particular buffers.Vversion-control
  2276. *Control use of version numbers for backup files.
  2277. t means make numeric backup versions unconditionally.
  2278. nil means make them for files that have some already.
  2279. never means do not make them.Vdired-kept-versions
  2280. *When cleaning directory, number of versions to keep.Vtrim-versions-without-asking
  2281. *If true, deletes excess backup versions silently.
  2282. Otherwise asks confirmation.Vkept-old-versions
  2283. *Number of oldest versions to keep when a new numbered backup is made.Vkept-new-versions
  2284. *Number of newest versions to keep when a new numbered backup is made.
  2285. Includes the new backup.  Must be > 0Vrequire-final-newline
  2286. *t says silently put a newline at the end whenever a file is saved.
  2287. Non-nil but not t says ask user whether to add a newline in each such case.
  2288. nil means don't add newlines.Vauto-save-default
  2289. *t says by default do auto-saving of every file-visiting buffer.Vauto-save-visited-file-name
  2290. *t says auto-save a buffer in the file it is visiting, when practical.
  2291. Normally auto-save files are written under other names.Vsave-abbrevs
  2292. *Non-nil means save word abbrevs too when files are saved.
  2293. Loading an abbrev file sets this to t.Vfind-file-run-dired
  2294. *Non-nil says run dired if find-file is given the name of a directory.Vfind-file-not-found-hooks
  2295. List of functions to be called for find-file on nonexistent file.
  2296. These functions are called as soon as the error is detected.
  2297. buffer-file-name is already set up.
  2298. The functions are called in the order given,
  2299. until one of them returns non-nil.Vfind-file-hooks
  2300. List of functions to be called after a buffer is loaded from a file.
  2301. The buffer's local variables (if any) will have been processed before the
  2302. functions are called.Vwrite-file-hooks
  2303. List of functions to be called before writing out a buffer to a file.
  2304. If one of them returns non-nil, the file is considered already written
  2305. and the rest are not called.Vinhibit-local-variables
  2306. *Non-nil means query before obeying a file's local-variables list.
  2307. This applies when the local-variables list is scanned automatically
  2308. after you find a file.  If you explicitly request such a scan with
  2309. \[normal-mode], there is no query, regardless of this variable.Vignore-local-eval
  2310. *Non-nil means ignore the "variable" `eval' in a file's local variables.
  2311. This applies when the local-variables list is scanned automatically
  2312. after you find a file.  If you explicitly request such a scan with
  2313. \[normal-mode], there is no query, regardless of this variable.Fpwd
  2314. Show the current default directory.Fcd
  2315. Make DIR become the current buffer's default directory.Fload-file
  2316. Load the file FILE of Lisp code.Fload-library
  2317. Load the library named LIBRARY.
  2318. This is an interface to the function `load'.Fswitch-to-buffer-other-window
  2319. Select buffer BUFFER in another window.Ffind-file
  2320. Edit file FILENAME.
  2321. Switch to a buffer visiting file FILENAME,
  2322. creating one if none already exists.Ffind-file-other-window
  2323. Edit file FILENAME, in another window.
  2324. May create a new window, or reuse an existing one;
  2325. see the function display-buffer.Ffind-file-read-only
  2326. Edit file FILENAME but don't save without confirmation.
  2327. Like find-file but marks buffer as read-only.Ffind-alternate-file
  2328. Find file FILENAME, select its buffer, kill previous buffer.
  2329. If the current buffer now contains an empty file that you just visited
  2330. (presumably by mistake), use this command to visit the file you really want.Fcreate-file-buffer
  2331. Create a suitably named buffer for visiting FILENAME, and return it.
  2332. FILENAME (sans directory) is used unchanged if that name is free;
  2333. otherwise a string <2> or <3> or ... is appended to get an unused name.Vautomount-dir-prefix
  2334. Regexp to match the automounter prefix in a directory name.Ffind-file-noselect
  2335. Read file FILENAME into a buffer and return the buffer.
  2336. If a buffer exists visiting FILENAME, return that one,
  2337. but verify that the file has not changed since visited or saved.
  2338. The buffer is not selected, just returned to the caller.Fafter-find-file
  2339. Called after finding a file and by the default revert function.
  2340. Sets buffer mode, parses local variables.
  2341. Optional args ERROR and WARN: ERROR non-nil means there was an
  2342. error in reading the file.  WARN non-nil means warn if there
  2343. exists an auto-save file more recent than the visited file.
  2344. Finishes by calling the functions in find-file-hooks.Fnormal-mode
  2345. Choose the major mode for this buffer automatically.
  2346. Also sets up any specified local variables of the file.
  2347. Uses the visited file name, the -*- line, and the local variables spec.
  2348.  
  2349. This function is called automatically from `find-file'.  In that case,
  2350. if `inhibit-local-variables' is non-`nil' we require confirmation before
  2351. processing a local variables spec.  If you run `normal-mode' explicitly,
  2352. confirmation is never required.Fset-auto-mode
  2353. Select major mode appropriate for current buffer.
  2354. May base decision on visited file name (See variable  auto-mode-list)
  2355. or on buffer contents (-*- line or local variables spec), but does not look
  2356. for the "mode:" local variable.  For that, use  hack-local-variables.Fhack-local-variables
  2357. Parse, and bind or evaluate as appropriate, any local variables
  2358. for current buffer.Fset-visited-file-name
  2359. Change name of file visited in current buffer to FILENAME.
  2360. The next time the buffer is saved it will go in the newly specified file.
  2361. nil or empty string as argument means make buffer not be visiting any file.
  2362. Remember to delete the initial contents of the minibuffer
  2363. if you wish to pass an empty string as the argument.Fwrite-file
  2364. Write current buffer into file FILENAME.
  2365. Makes buffer visit that file, and marks it not modified.Fbackup-buffer
  2366. Make a backup of the disk file visited by the current buffer, if appropriate.
  2367. This is normally done before saving the buffer the first time.
  2368. If the value is non-nil, it is the result of `file-modes' on the original file;
  2369. this means that the caller, after saving the buffer, should change the modes
  2370. of the new file to agree with the old modes.Ffile-name-sans-versions
  2371. Return FILENAME sans backup versions or strings.
  2372. This is a separate procedure so your site-init or startup file can
  2373. redefine it.Fmake-backup-file-name
  2374. Create the non-numeric backup file name for FILE.
  2375. This is a separate function so you can redefine it for customization.Fbackup-file-name-p
  2376. Return non-nil if FILE is a backup file name (numeric or not).
  2377. This is a separate function so you can redefine it for customization.
  2378. You may need to redefine file-name-sans-versions as well.Ffind-backup-file-name
  2379. Find a file name for a backup file, and suggestions for deletions.
  2380. Value is a list whose car is the name for the backup file
  2381.  and whose cdr is a list of old versions to consider deleting now.Ffile-nlinks
  2382. Return number of names file FILENAME has.Fsave-buffer
  2383. Save current buffer in visited file if modified.  Versions described below.
  2384.  
  2385. By default, makes the previous version into a backup file
  2386.  if previously requested or if this is the first save.
  2387. With 1 or 3 \[universal-argument]'s, marks this version
  2388.  to become a backup when the next save is done.
  2389. With 2 or 3 \[universal-argument]'s,
  2390.  unconditionally makes the previous version into a backup file.
  2391. With argument of 0, never makes the previous version into a backup file.
  2392.  
  2393. If a file's name is FOO, the names of its numbered backup versions are
  2394.  FOO.~i~ for various integers i.  A non-numbered backup file is called FOO~.
  2395. Numeric backups (rather than FOO~) will be made if value of
  2396.  `version-control' is not the atom `never' and either there are already
  2397.  numeric versions of the file being backed up, or `version-control' is
  2398.  non-nil.
  2399. We don't want excessive versions piling up, so there are variables
  2400.  `kept-old-versions', which tells Emacs how many oldest versions to keep,
  2401.  and `kept-new-versions', which tells how many newest versions to keep.
  2402.  Defaults are 2 old versions and 2 new.
  2403. `dired-kept-versions' controls dired's clean-directory (.) command.
  2404. If `trim-versions-without-asking' is nil, system will query user
  2405.  before trimming versions.  Otherwise it does it silently.Fdelete-auto-save-file-if-necessary
  2406. Delete the auto-save filename for the current buffer (if it has one)
  2407. if variable  delete-auto-save-files  is non-nil.Fbasic-save-buffer
  2408. Save the current buffer in its visited file, if it has been modified.Fsave-some-buffers
  2409. Save some modified file-visiting buffers.  Asks user about each one.
  2410. Optional argument (the prefix) non-nil means save all with no questions.
  2411. Optional second argument EXITING means ask about certain non-file buffers
  2412.  as well as about file buffers.Fnot-modified
  2413. Mark current buffer as unmodified, not needing to be saved.Ftoggle-read-only
  2414. Change whether this buffer is visiting its file read-only.Finsert-file
  2415. Insert contents of file FILENAME into buffer after point.
  2416. Set mark after the inserted text.Fappend-to-file
  2417. Append the contents of the region to the end of file FILENAME.
  2418. When called from a function, expects three arguments,
  2419. START, END and FILENAME.  START and END are buffer positions
  2420. saying what text to write.Vrevert-buffer-function
  2421. Function to use to revert this buffer, or nil to do the default.Frevert-buffer
  2422. Replace the buffer text with the text of the visited file on disk.
  2423. This undoes all changes since the file was visited or saved.
  2424. If latest auto-save file is more recent than the visited file,
  2425. asks user whether to use that instead.
  2426. First argument (optional) non-nil means don't offer to use auto-save file.
  2427.  This is the prefix arg when called interactively.
  2428.  
  2429. Second argument (optional) non-nil means don't ask for confirmation at all.
  2430.  
  2431. If revert-buffer-function's value is non-nil, it is called to do the work.Frecover-file
  2432. Visit file FILE, but get contents from its last auto-save file.Fkill-some-buffers
  2433. For each buffer, ask whether to kill it.Fauto-save-mode
  2434. Toggle auto-saving of contents of current buffer.
  2435. With arg, turn auto-saving on if arg is positive, else off.Frename-auto-save-file
  2436. Adjust current buffer's auto save file name for current conditions.
  2437. Also rename any existing auto save file.Fmake-auto-save-file-name
  2438. Return file name to use for auto-saves of current buffer.
  2439. Does not consider auto-save-visited-file-name; that is checked
  2440. before calling this function.
  2441. You can redefine this for customization.
  2442. See also auto-save-file-name-p.Fauto-save-file-name-p
  2443. Return non-nil if FILENAME can be yielded by make-auto-save-file-name.
  2444. FILENAME should lack slashes.
  2445. You can redefine this for customization.Vlist-directory-brief-switches
  2446. *Switches for list-directory to pass to `ls' for brief listing,Vlist-directory-verbose-switches
  2447. *Switches for list-directory to pass to `ls' for verbose listing,Flist-directory
  2448. Display a list of files in or matching DIRNAME, a la `ls'.
  2449. DIRNAME is globbed by the shell if necessary.
  2450. Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
  2451. Actions controlled by variables list-directory-brief-switches
  2452.  and list-directory-verbose-switches.Fsave-buffers-kill-emacs
  2453. Offer to save each buffer, then kill this Emacs fork.
  2454. With prefix arg, silently save all file-visiting buffers, then kill.Vctl-x-4-map
  2455. Keymap for subcommands of C-x 4Fsplit-window-vertically
  2456. Split current window into two windows, one above the other.
  2457. This window becomes the uppermost of the two, and gets
  2458. ARG lines.  No arg means split equally.Fsplit-window-horizontally
  2459. Split current window into two windows side by side.
  2460. This window becomes the leftmost of the two, and gets
  2461. ARG columns.  No arg means split equally.Fenlarge-window-horizontally
  2462. Make current window ARG columns wider.Fshrink-window-horizontally
  2463. Make current window ARG columns narrower.Findent-according-to-mode
  2464. Indent line in proper way for current major mode.Findent-for-tab-command
  2465. Indent line in proper way for current major mode.Findent-rigidly
  2466. Indent all lines starting in the region sideways by ARG columns.
  2467. Called from a program, takes three arguments, START, END and ARG.Vindent-region-function
  2468. Function which is short cut to indent each line in region with Tab.
  2469. nil means really call Tab on each line.Findent-region
  2470. Indent each nonblank line in the region.
  2471. With no argument, indent each line with Tab.
  2472. With argument COLUMN, indent each line to that column.
  2473. Called from a program, takes three args: START, END and COLUMN.Findent-relative-maybe
  2474. Indent a new line like previous nonblank line.Findent-relative
  2475. Space out to under next indent point in previous nonblank line.
  2476. An indent point is a non-whitespace character following whitespace.
  2477. If the previous nonblank line has no indent points beyond
  2478. the column point starts at,  tab-to-tab-stop  is done instead.Vtab-stop-list
  2479. *List of tab stop positions used by tab-to-tab-stops.Vedit-tab-stops-map
  2480. Keymap used in edit-tab-stops.Vedit-tab-stops-buffer
  2481. Buffer whose tab stops are being edited--in case
  2482. the variable tab-stop-list is local in that buffer.Fedit-tab-stops
  2483. Edit the tab stops used by tab-to-tab-stop.
  2484. Creates a buffer *Tab Stops* containing text describing the tab stops.
  2485. A colon indicates a column where there is a tab stop.
  2486. You can add or remove colons and then do C-c C-c to make changes take effect.Fedit-tab-stops-note-changes
  2487. Put edited tab stops into effect.Ftab-to-tab-stop
  2488. Insert spaces or tabs to next defined tab-stop column.
  2489. The variable tab-stop-list is a list of columns at which there are tab stops.
  2490. Use \[edit-tab-stops] to edit them interactively.Vmode-line-buffer-identification
  2491. Mode-line control for identifying the buffer being displayed.
  2492. Its default value is "Emacs: %17b".  Major modes that edit things
  2493. other than ordinary files may change this (e.g. Info, Dired,...)Vmode-line-process
  2494. Mode-line control for displaying info on process status.
  2495. Normally nil in most modes, since there is no process to display.Vmode-line-modified
  2496. Mode-line control for displaying whether current buffer is modified.Vminor-mode-alist
  2497. Alist saying how to show minor modes in the mode line.
  2498. Each element looks like (VARIABLE STRING);
  2499. STRING is included in the mode line iff VARIABLE's value is non-nil.Vfunction-keymap
  2500. Keymap containing definitions of keypad and function keys.Vparagraph-start
  2501. *Regexp for beginning of a line that starts OR separates paragraphs.Vparagraph-separate
  2502. *Regexp for beginning of a line that separates paragraphs.
  2503. If you change this, you may have to change paragraph-start also.Vsentence-end
  2504. *Regexp describing the end of a sentence.
  2505. All paragraph boundaries also end sentences, regardless.Vpage-delimiter
  2506. *Regexp describing line-beginnings that separate pages.Vcase-replace
  2507. *Non-nil means query-replace should preserve case in replacements.Vindent-line-function
  2508. Function to indent current line.Vonly-global-abbrevs
  2509. *t means user plans to use global abbrevs only.
  2510. Makes the commands to define mode-specific abbrevs define global ones instead.Vcompile-command
  2511. *Last shell command used to do a compilation; default for next compilation.Vdired-listing-switches
  2512. *Switches passed to ls for Dired.  MUST contain the `l' option.
  2513. MUST NOT contain the `F, `s' or `i'' option.Vlpr-switches
  2514. *List of strings to pass as extra switch args to lpr when it is invoked.Vtags-file-name
  2515. *File name of tag table.
  2516. To switch to a new tag table, setting this variable is sufficient.
  2517. Use the `etags' program to make a tag table file.Vshell-prompt-pattern
  2518. *Regexp used by Newline command in shell mode to match subshell prompts.
  2519. Anything from beginning of line up to the end of what this pattern matches
  2520. is deemed to be prompt, and is not reexecuted.Vledit-save-files
  2521. *Non-nil means Ledit should save files before transferring to Lisp.Vledit-go-to-lisp-string
  2522. *Shell commands to execute to resume Lisp job.Vledit-go-to-liszt-string
  2523. *Shell commands to execute to resume Lisp compiler job.Vdisplay-time-day-and-date
  2524. *Non-nil means M-x display-time should display day and date as well as time.Vauto-mode-alist
  2525. Alist of filename patterns vs corresponding major mode functions.
  2526. Each element looks like (REGEXP . FUNCTION).
  2527. Visiting a file whose name matches REGEXP causes FUNCTION to be called.Vctl-x-4-map
  2528. Keymap for subcommands of C-x 4Fadd-change-log-entry
  2529. Find change log file and add an entry for today.
  2530. First arg (interactive prefix) non-nil means prompt for user name and site.
  2531. Second arg is file name of change log.
  2532. Optional third arg OTHER-WINDOW non-nil means visit in other window.Fadd-change-log-entry-other-window
  2533. Find change log file in other window, and add an entry for today.F`
  2534. (` FORM) Expands to a form that will generate FORM.
  2535. FORM is `almost quoted' -- see backquote.el for a description.Fbyte-compile-file
  2536. Compile a file of Lisp code named FILENAME into a file of byte code.
  2537. The output file's name is made by appending "c" to the end of FILENAME.Fbyte-recompile-directory
  2538. Recompile every .el file in DIRECTORY that needs recompilation.
  2539. This is if a .elc file exists but is older than the .el file.
  2540. If the .elc file does not exist, offer to compile the .el file
  2541. only if a prefix argument has been specified.Fbatch-byte-compile
  2542. Runs byte-compile-file on the files remaining on the command line.
  2543. Must be used only with -batch, and kills emacs on completion.
  2544. Each file will be processed even if an error occurred previously.
  2545. For example, invoke "emacs -batch -f batch-byte-compile $emacs/ ~/*.el"Fcalendar
  2546. Display three-month calendar in another window.
  2547. The three months appear side by side, with the current month in the middle
  2548. surrounded by the previous and next months.  The cursor is put on today's date.
  2549.  
  2550. An optional prefix argument ARG causes the calendar displayed to be
  2551. ARG months in the future if ARG is positive or in the past if ARG is
  2552. negative; in this case the cursor goes on the first day of the month.
  2553.  
  2554. The Gregorian calendar is assumed.
  2555.  
  2556. After preparing the calendar window, the hooks calendar-hook are run
  2557. when the calendar is for the current month--that is, the was no prefix
  2558. argument.  If the calendar is for a future or past month--that is, there
  2559. was a prefix argument--the hooks offset-calendar-hook are run.  Thus, for
  2560. example, setting calendar-hooks to 'star-date will cause today's date to be
  2561. replaced by asterisks to highlight it in the window.Flist-command-history
  2562. List history of commands typed to minibuffer.
  2563. The number of commands listed is controlled by  list-command-history-max.
  2564. Calls value of  list-command-history-filter  (if non-nil) on each history
  2565. element to judge if that element should be excluded from the list.
  2566.  
  2567. The buffer is left in Command History mode.Fcommand-history-mode
  2568. Major mode for examining commands from  command-history.
  2569. The number of commands listed is controlled by  list-command-history-max.
  2570. The command history is filtered by  list-command-history-filter  if non-nil.
  2571.  
  2572. Like Emacs-Lisp Mode except that characters do not insert themselves and
  2573. Digits provide prefix arguments.  Tab does not indent.
  2574. \{command-history-map}
  2575. Calls the value of  command-history-hook  if that is non-nil
  2576. The Command History listing is recomputed each time this mode is
  2577. invoked.Frepeat-matching-complex-command
  2578. Edit and re-evaluate complex command with name matching PATTERN.
  2579. Matching occurrences are displayed, most recent first, until you
  2580. select a form for evaluation.  If PATTERN is empty (or nil), every form
  2581. in the command history is offered.  The form is placed in the minibuffer
  2582. for editing and the result is evaluated.Fcompare-windows
  2583. Compare text in current window with text in next window.
  2584. Compares the text starting at point in each window,
  2585. moving over text in each one as far as they match.Fcompile
  2586. Compile the program including the current buffer.  Default: run `make'.
  2587. Runs COMMAND, a shell command, in a separate process asynchronously
  2588. with output going to the buffer *compilation*.
  2589. You can then use the command \[next-error] to find the next error message
  2590. and move to the source code that caused it.Fgrep
  2591. Run grep, with user-specified args, and collect output in a buffer.
  2592. While grep runs asynchronously, you can use the \[next-error] command
  2593. to find the text that grep hits refer to.Fnext-error
  2594. Visit next compilation error message and corresponding source code.
  2595. This operates on the output from the \[compile] command.
  2596. If all preparsed error messages have been processed,
  2597. the error message buffer is checked for new ones.
  2598. A non-nil argument (prefix arg, if interactive)
  2599. means reparse the error message buffer and start at the first error.Fdabbrev-expand
  2600. Expand previous word "dynamically".
  2601. Expands to the most recent, preceding word for which this is a prefix.
  2602. If no suitable preceding word is found, words following point are considered.
  2603.  
  2604. A positive prefix argument, N, says to take the Nth backward DISTINCT
  2605. possibility.  A negative argument says search forward.  The variable
  2606. dabbrev-backward-only may be used to limit the direction of search to
  2607. backward if set non-nil.
  2608.  
  2609. If the cursor has not moved from the end of the previous expansion and
  2610. no argument is given, replace the previously-made expansion
  2611. with the next possible expansion not yet tried.Fdebug
  2612. Enter debugger.  Returns if user says "continue".
  2613. Arguments are mainly for use when this is called
  2614.  from the internals of the evaluator.
  2615. You may call with no args, or you may
  2616.  pass nil as the first arg and any other args you like.
  2617.  In that case, the list of args after the first will 
  2618.  be printed into the backtrace buffer.Fcancel-debug-on-entry
  2619. Undoes effect of debug-on-entry on FUNCTION.Fdebug-on-entry
  2620. Request FUNCTION to invoke debugger each time it is called.
  2621. If the user continues, FUNCTION's execution proceeds.
  2622. Works by modifying the definition of FUNCTION,
  2623. which must be written in Lisp, not predefined.
  2624. Use `cancel-debug-on-entry' to cancel the effect of this command.
  2625. Redefining FUNCTION also does that.Fdired
  2626. "Edit" directory DIRNAME--delete, rename, print, etc. some files in it.
  2627. Dired displays a list of files in DIRNAME.
  2628. You can move around in it with the usual commands.
  2629. You can flag files for deletion with C-d
  2630. and then delete them by typing `x'.
  2631. Type `h' after entering dired for more info.Fdired-other-window
  2632. "Edit" directory DIRNAME.  Like \[dired] but selects in another window.Fdired-noselect
  2633. Like M-x dired but returns the dired buffer as value, does not select it.Fdissociated-press
  2634. Dissociate the text of the current buffer.
  2635. Output goes in buffer named *Dissociation*,
  2636. which is redisplayed each time text is added to it.
  2637. Every so often the user must say whether to continue.
  2638. If ARG is positive, require ARG chars of continuity.
  2639. If ARG is negative, require -ARG words of continuity.
  2640. Default is 2.Fdoctor
  2641. Switch to *doctor* buffer and start giving psychotherapy.Fdisassemble
  2642. Print disassembled code for OBJECT on (optional) STREAM.
  2643. OBJECT can be a function name, lambda expression or any function object
  2644. returned by SYMBOL-FUNCTION.  If OBJECT is not already compiled, we will
  2645. compile it (but not redefine it).Felectric-buffer-list
  2646. Vaguely like ITS lunar select buffer;
  2647. combining typeoutoid buffer listing with menuoid buffer selection.
  2648.  
  2649. This pops up a buffer describing the set of emacs buffers.
  2650. If the very next character typed is a space then the buffer list
  2651.  window disappears.
  2652.  
  2653. Otherwise, one may move around in the buffer list window, marking
  2654.  buffers to be selected, saved or deleted.
  2655.  
  2656. To exit and select a new buffer, type Space when the cursor is on the
  2657.  appropriate line of the buffer-list window.
  2658.  
  2659. Other commands are much like those of buffer-menu-mode.
  2660.  
  2661. Calls value of  electric-buffer-menu-mode-hook  on entry if non-nil.
  2662.  
  2663. \{electric-buffer-menu-mode-map}Felectric-command-history
  2664. Major mode for examining and redoing commands from  command-history.
  2665. The number of command listed is controlled by  list-command-history-max.
  2666. The command history is filtered by  list-command-history-filter  if non-nil.
  2667. Combines typeout Command History list window with menu like selection
  2668. of an expression from the history for re-evaluation in the *original* buffer.
  2669.  
  2670. The history displayed is filtered by  list-command-history-filter  if non-nil.
  2671.  
  2672. This pops up a window with the Command History listing.  If the very
  2673. next character typed is Space, the listing is killed and the previous
  2674. window configuration is restored.  Otherwise, you can browse in the
  2675. Command History with  Return  moving down and  Delete  moving up, possibly
  2676. selecting an expression to be redone with Space or quitting with `Q'.
  2677.  
  2678. Like Emacs-Lisp Mode except that characters do not insert themselves and
  2679. Tab and linefeed do not indent.  Instead these commands are provided:
  2680. Space or !    edit then evaluate current line in history inside
  2681.            the ORIGINAL buffer which invoked this mode.
  2682.            The previous window configuration is restored
  2683.            unless the invoked command changes it.
  2684. C-c C-c, C-], Q    Quit and restore previous window configuration.
  2685. LFD, RET    Move to the next line in the history.
  2686. DEL        Move to the previous line in the history.
  2687. ?        Provides a complete list of commands.
  2688.  
  2689. Calls the value of  electric-command-history-hook  if that is non-nil
  2690. The Command History listing is recomputed each time this mode is invoked.Fedt-emulation-on
  2691. Begin emulating DEC's EDT editor.
  2692. Certain keys are rebound; including nearly all keypad keys.
  2693. Use \[edt-emulation-off] to undo all rebindings except the keypad keys.
  2694. Note that this function does not work if called directly from the .emacs file.
  2695. Instead, the .emacs file should do (setq term-setup-hook 'edt-emulation-on)
  2696. Then this function will be called at the time when it will work.Ffortran-mode
  2697. Major mode for editing fortran code.
  2698. Tab indents the current fortran line correctly. 
  2699. `do' statements must not share a common `continue'.
  2700.  
  2701. Type `;?' or `;\[help-command]' to display a list of built-in abbrevs for Fortran keywords.
  2702.  
  2703. Variables controlling indentation style and extra features:
  2704.  
  2705.  comment-start
  2706.     Normally nil in Fortran mode.  If you want to use comments
  2707.     starting with `!', set this to the string "!".
  2708.  fortran-do-indent
  2709.     Extra indentation within do blocks.  (default 3)
  2710.  fortran-if-indent
  2711.     Extra indentation within if blocks.  (default 3)
  2712.  fortran-continuation-indent
  2713.     Extra indentation appled to continuation statements.  (default 5)
  2714.  fortran-comment-line-column
  2715.     Amount of indentation for text within full-line comments. (default 6)
  2716.  fortran-comment-indent-style
  2717.     nil    means don't change indentation of text in full-line comments,
  2718.     fixed  means indent that text at column fortran-comment-line-column
  2719.     relative  means indent at fortran-comment-line-column beyond the
  2720.            indentation for a line of code.
  2721.     Default value is fixed.
  2722.  fortran-comment-indent-char
  2723.     Character to be inserted instead of space for full-line comment
  2724.     indentation.  (default is a space)
  2725.  fortran-minimum-statement-indent
  2726.     Minimum indentation for fortran statements. (default 6)
  2727.  fortran-line-number-indent
  2728.     Maximum indentation for line numbers.  A line number will get
  2729.     less than this much indentation if necessary to avoid reaching
  2730.     column 5.  (default 1)
  2731.  fortran-check-all-num-for-matching-do
  2732.     Non-nil causes all numbered lines to be treated as possible 'continue'
  2733.     statements.  (default nil)
  2734.  fortran-continuation-char
  2735.     character to be inserted in column 5 of a continuation line.
  2736.     (default $)
  2737.  fortran-comment-region
  2738.     String inserted by \[fortran-comment-region] at start of each line in 
  2739.     region.  (default "c$$$")
  2740.  fortran-electric-line-number
  2741.     Non-nil causes line number digits to be moved to the correct column 
  2742.     as typed.  (default t)
  2743.  fortran-startup-message
  2744.     Set to nil to inhibit message first time fortran-mode is used.
  2745.  
  2746. Turning on Fortran mode calls the value of the variable fortran-mode-hook 
  2747. with no args, if that value is non-nil.
  2748. \{fortran-mode-map}Fftp-find-file
  2749. FTP to HOST to get FILE, logging in as USER with password PASSWORD.
  2750. Interactively, HOST and FILE are specified by reading a string with
  2751.  a colon character separating the host from the filename.
  2752. USER and PASSWORD are defaulted from the values used when
  2753.  last ftping from HOST (unless password-remembering is disabled).
  2754.  Supply a password of the symbol `t' to override this default
  2755.  (interactively, this is done by giving a prefix arg)Fftp-write-file
  2756. FTP to HOST to write FILE, logging in as USER with password PASSWORD.
  2757. Interactively, HOST and FILE are specified by reading a string with colon
  2758. separating the host from the filename.
  2759. USER and PASSWORD are defaulted from the values used when
  2760.  last ftping from HOST (unless password-remembering is disabled).
  2761.  Supply a password of the symbol `t' to override this default
  2762.  (interactively, this is done by giving a prefix arg)Fgdb
  2763. Run gdb on program FILE in buffer *gdb-FILE*.
  2764. The directory containing FILE becomes the initial working directory
  2765. and source-file directory for GDB.  If you wish to change this, use
  2766. the GDB commands `cd DIR' and `directory'.Fset-gosmacs-bindings
  2767. Rebind some keys globally to make GNU Emacs resemble Gosling Emacs.
  2768. Use \[set-gnu-bindings] to restore previous global bindings.Fhanoi
  2769. Towers of Hanoi diversion.  Argument is number of rings.FHelper-help
  2770. Provide help for current mode.FHelper-describe-bindings
  2771. Describe local key bindings of current mode.Finfo
  2772. Enter Info, the documentation browser.FInfo-tagify
  2773. Create or update Info-file tag table in current buffer.FInfo-validate
  2774. Check current buffer for validity as an Info file.
  2775. Check that every node pointer points to an existing node.FInfo-split
  2776. Split an info file into an indirect file plus bounded-size subfiles.
  2777. Each subfile will be up to 50000 characters plus one node.
  2778.  
  2779. To use this command, first visit a large Info file that has a tag table.
  2780. The buffer is modified into a (small) indirect info file
  2781. which should be saved in place of the original visited file.
  2782.  
  2783. The subfiles are written in the same directory the original file is in,
  2784. with names generated by appending `-' and a number to the original file name.
  2785.  
  2786. The indirect file still functions as an Info file, but it contains
  2787. just the tag table and a directory of subfiles.Fbatch-info-validate
  2788. Runs  Info-validate  on the files remaining on the command line.
  2789. Must be used only with -batch, and kills emacs on completion.
  2790. Each file will be processed even if an error occurred previously.
  2791. For example, invoke "emacs -batch -f batch-info-validate $info/ ~/*.info"Fledit-mode
  2792. Major mode for editing text and stuffing it to a Lisp job.
  2793. Like Lisp mode, plus these special commands:
  2794.   M-C-d    -- record defun at or after point
  2795.        for later transmission to Lisp job.
  2796.   M-C-r -- record region for later transmission to Lisp job.
  2797.   C-x z -- transfer to Lisp job and transmit saved text.
  2798.   M-C-c -- transfer to Liszt (Lisp compiler) job
  2799.        and transmit saved text.
  2800. \{ledit-mode-map}
  2801. To make Lisp mode automatically change to Ledit mode,
  2802. do (setq lisp-mode-hook 'ledit-from-lisp-mode)Flpr-buffer
  2803. Print buffer contents as with Unix command `lpr'.
  2804. `lpr-switches' is a list of extra switches (strings) to pass to lpr.Fprint-buffer
  2805. Print buffer contents as with Unix command `lpr -p'.
  2806. `lpr-switches' is a list of extra switches (strings) to pass to lpr.Flpr-region
  2807. Print region contents as with Unix command `lpr'.
  2808. `lpr-switches' is a list of extra switches (strings) to pass to lpr.Fprint-region
  2809. Print region contents as with Unix command `lpr -p'.
  2810. `lpr-switches' is a list of extra switches (strings) to pass to lpr.Finsert-kbd-macro
  2811. Insert in buffer the definition of kbd macro NAME, as Lisp code.
  2812. Second argument KEYS non-nil means also record the keys it is on.
  2813.  (This is the prefix argument, when calling interactively.)
  2814.  
  2815. This Lisp code will, when executed, define the kbd macro with the
  2816. same definition it has now.  If you say to record the keys,
  2817. the Lisp code will also rebind those keys to the macro.
  2818. Only global key bindings are recorded since executing this Lisp code
  2819. always makes global bindings.
  2820.  
  2821. To save a kbd macro, visit a file of Lisp code such as your ~/.emacs,
  2822. use this command, and then save the file.Fkbd-macro-query
  2823. Query user during kbd macro execution.
  2824. With prefix argument, enters recursive edit,
  2825.  reading keyboard commands even within a kbd macro.
  2826.  You can give different commands each time the macro executes.
  2827. Without prefix argument, reads a character.  Your options are:
  2828.  Space -- execute the rest of the macro.
  2829.  DEL -- skip the rest of the macro; start next repetition.
  2830.  C-d -- skip rest of the macro and don't repeat it any more.
  2831.  C-r -- enter a recursive edit, then on exit ask again for a character
  2832.  C-l -- redisplay screen and ask again.Fname-last-kbd-macro
  2833. Assign a name to the last keyboard macro defined.
  2834. One arg, a symbol, which is the name to define.
  2835. The symbol's function definition becomes the keyboard macro string.
  2836. Such a "function" cannot be called from Lisp, but it is a valid command
  2837. definition for the editor command loop.Fmake-command-summary
  2838. Make a summary of current key bindings in the buffer *Summary*.
  2839. Previous contents of that buffer are killed first.Fdefine-mail-alias
  2840. Define NAME as a mail-alias that translates to DEFINITION.Fmanual-entry
  2841. Display the Unix manual entry for TOPIC.
  2842. TOPIC is either the title of the entry, or has the form TITLE(SECTION)
  2843. where SECTION is the desired section of the manual, as in `tty(4)'.Fmh-rmail
  2844. Inc(orporate) new mail (no arg) or scan a MH mail box (arg given).
  2845. This front end uses the MH mail system, which uses different conventions
  2846. from the usual mail system.Fmh-smail
  2847. Send mail using the MH mail system.Fconvert-mocklisp-buffer
  2848. Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run.Fmodula-2-mode
  2849. This is a mode intended to support program development in Modula-2.
  2850. All control constructs of Modula-2 can be reached by typing
  2851. Control-C followed by the first character of the construct.
  2852. \{m2-mode-map}
  2853.   Control-c b begin         Control-c c case
  2854.   Control-c d definition    Control-c e else
  2855.   Control-c f for           Control-c h header
  2856.   Control-c i if            Control-c m module
  2857.   Control-c l loop          Control-c o or
  2858.   Control-c p procedure     Control-c Control-w with
  2859.   Control-c r record        Control-c s stdio
  2860.   Control-c t type          Control-c u until
  2861.   Control-c v var           Control-c w while
  2862.   Control-c x export        Control-c y import
  2863.   Control-c { begin-comment Control-c } end-comment
  2864.   Control-c Control-z suspend-emacs     Control-c Control-t toggle
  2865.   Control-c Control-c compile           Control-x ` next-error
  2866.   Control-c Control-l link
  2867.  
  2868.    m2-indent controls the number of spaces for each indentation.
  2869.    m2-compile-command holds the command to compile a Modula-2 program.
  2870.    m2-link-command holds the command to link a Modula-2 program.Fenable-command
  2871. Allow COMMAND to be executed without special confirmation from now on.
  2872. The user's .emacs file is altered so that this will apply
  2873. to future sessions.Fdisable-command
  2874. Require special confirmation to execute COMMAND from now on.
  2875. The user's .emacs file is altered so that this will apply
  2876. to future sessions.Fnroff-mode
  2877. Major mode for editing text intended for nroff to format.
  2878. \{nroff-mode-map}
  2879. Turning on Nroff mode runs text-mode-hook, then nroff-mode-hook.
  2880. Also, try nroff-electric-mode, for automatically inserting
  2881. closing requests for requests that are used in matched pairs.Flist-options
  2882. Display a list of Emacs user options, with values and documentation.Fedit-options
  2883. Edit a list of Emacs user option values.
  2884. Selects a buffer containing such a list,
  2885. in which there are commands to set the option values.
  2886. Type \[describe-mode] in that buffer for a list of commands.Foutline-mode
  2887. Set major mode for editing outlines with selective display.
  2888. Headings are lines which start with asterisks: one for major headings,
  2889. two for subheadings, etc.  Lines not starting with asterisks are body lines. 
  2890.  
  2891. Body text or subheadings under a heading can be made temporarily
  2892. invisible, or visible again.  Invisible lines are attached to the end 
  2893. of the heading, so they move with it, if the line is killed and yanked
  2894. back.  A heading with text hidden under it is marked with an ellipsis (...).
  2895.  
  2896. Commands:
  2897. C-c C-n   outline-next-visible-heading      move by visible headings
  2898. C-c C-p   outline-previous-visible-heading
  2899. C-c C-f   outline-forward-same-level        similar but skip subheadings
  2900. C-c C-b   outline-backward-same-level
  2901. C-c C-u   outline-up-heading            move from subheading to heading
  2902.  
  2903. Meta-x hide-body    make all text invisible (not headings).
  2904. Meta-x show-all        make everything in buffer visible.
  2905.  
  2906. The remaining commands are used when point is on a heading line.
  2907. They apply to some of the body or subheadings of that heading.
  2908. C-c C-h   hide-subtree    make body and subheadings invisible.
  2909. C-c C-s   show-subtree    make body and subheadings visible.
  2910. C-c C-i   show-children    make direct subheadings visible.
  2911.          No effect on body, or subheadings 2 or more levels down.
  2912.          With arg N, affects subheadings N levels down.
  2913. M-x hide-entry       make immediately following body invisible.
  2914. M-x show-entry       make it visible.
  2915. M-x hide-leaves       make body under heading and under its subheadings invisible.
  2916.              The subheadings remain visible.
  2917. M-x show-branches  make all subheadings at all levels visible.
  2918.  
  2919. The variable outline-regexp can be changed to control what is a heading.
  2920. A line is a heading if outline-regexp matches something at the
  2921. beginning of the line.  The longer the match, the deeper the level.
  2922.  
  2923. Turning on outline mode calls the value of text-mode-hook and then of
  2924. outline-mode-hook, if they are non-nil.Fedit-picture
  2925. Switch to Picture mode, in which a quarter-plane screen model is used.
  2926. Printing characters replace instead of inserting themselves with motion
  2927. afterwards settable by these commands:
  2928.   C-c <      Move left after insertion.
  2929.   C-c >      Move right after insertion.
  2930.   C-c ^      Move up after insertion.
  2931.   C-c .      Move down after insertion.
  2932.   C-c `      Move northwest (nw) after insertion.
  2933.   C-c '      Move northeast (ne) after insertion.
  2934.   C-c /      Move southwest (sw) after insertion.
  2935.   C-c \   Move southeast (se) after insertion.
  2936. The current direction is displayed in the mode line.  The initial
  2937. direction is right.  Whitespace is inserted and tabs are changed to
  2938. spaces when required by movement.  You can move around in the buffer
  2939. with these commands:
  2940.   C-p      Move vertically to SAME column in previous line.
  2941.   C-n      Move vertically to SAME column in next line.
  2942.   C-e      Move to column following last non-whitespace character.
  2943.   C-f      Move right inserting spaces if required.
  2944.   C-b      Move left changing tabs to spaces if required.
  2945.   C-c C-f Move in direction of current picture motion.
  2946.   C-c C-b Move in opposite direction of current picture motion.
  2947.   Return  Move to beginning of next line.
  2948. You can edit tabular text with these commands:
  2949.   M-Tab      Move to column beneath (or at) next interesting charecter.
  2950.         `Indents' relative to a previous line.
  2951.   Tab      Move to next stop in tab stop list.
  2952.   C-c Tab Set tab stops according to context of this line.
  2953.         With ARG resets tab stops to default (global) value.
  2954.         See also documentation of variable    picture-tab-chars
  2955.         which defines "interesting character".  You can manually
  2956.         change the tab stop list with command \[edit-tab-stops].
  2957. You can manipulate text with these commands:
  2958.   C-d      Clear (replace) ARG columns after point without moving.
  2959.   C-c C-d Delete char at point - the command normally assigned to C-d.
  2960.   Delete  Clear (replace) ARG columns before point, moving back over them.
  2961.   C-k      Clear ARG lines, advancing over them.     The cleared
  2962.         text is saved in the kill ring.
  2963.   C-o      Open blank line(s) beneath current line.
  2964. You can manipulate rectangles with these commands:
  2965.   C-c C-k Clear (or kill) a rectangle and save it.
  2966.   C-c C-w Like C-c C-k except rectangle is saved in named register.
  2967.   C-c C-y Overlay (or insert) currently saved rectangle at point.
  2968.   C-c C-x Like C-c C-y except rectangle is taken from named register.
  2969.   \[copy-rectangle-to-register]   Copies a rectangle to a register.
  2970.   \[advertised-undo]   Can undo effects of rectangle overlay commands
  2971.         commands if invoked soon enough.
  2972. You can return to the previous mode with:
  2973.   C-c C-c Which also strips trailing whitespace from every line.
  2974.         Stripping is suppressed by supplying an argument.
  2975.  
  2976. Entry to this mode calls the value of  edit-picture-hook  if non-nil.
  2977.  
  2978. Note that Picture mode commands will work outside of Picture mode, but
  2979. they are not defaultly assigned to keys.Fprolog-mode
  2980. Major mode for editing Prolog code for Prologs.
  2981. Blank lines and `%%...' separate paragraphs.  `%'s start comments.
  2982. Commands:
  2983. \{prolog-mode-map}
  2984. Entry to this mode calls the value of prolog-mode-hook
  2985. if that value is non-nil.Frun-prolog
  2986. Run an inferior Prolog process, input and output via buffer *prolog*.Fclear-rectangle
  2987. Blank out rectangle with corners at point and mark.
  2988. The text previously in the region is overwritten by the blanks.Fdelete-rectangle
  2989. Delete (don't save) text in rectangle with point and mark as corners.
  2990. The same range of columns is deleted in each line
  2991. starting with the line where the region begins
  2992. and ending with the line where the region ends.Fdelete-extract-rectangle
  2993. Return and delete contents of rectangle with corners at START and END.
  2994. Value is list of strings, one for each line of the rectangle.Fextract-rectangle
  2995. Return contents of rectangle with corners at START and END.
  2996. Value is list of strings, one for each line of the rectangle.Finsert-rectangle
  2997. Insert text of RECTANGLE with upper left corner at point.
  2998. RECTANGLE's first line is inserted at point,
  2999. its second line is inserted at a point vertically under point, etc.
  3000. RECTANGLE should be a list of strings.Fkill-rectangle
  3001. Delete rectangle with corners at point and mark; save as last killed one.
  3002. Calling from program, supply two args START and END, buffer positions.
  3003. But in programs you might prefer to use delete-extract-rectangle.Fopen-rectangle
  3004. Blank out rectangle with corners at point and mark, shifting text right.
  3005. The text previously in the region is not overwritten by the blanks,
  3006. but insted winds up to the right of the rectangle.Fyank-rectangle
  3007. Yank the last killed rectangle with upper left corner at point.Frnews
  3008. Read USENET news for groups for which you are a member and add or
  3009. delete groups.
  3010. You can reply to articles posted and send articles to any group.
  3011.  
  3012. Type \[describe-mode] once reading news to get a list of rnews commands.Fnews-post-news
  3013. Begin editing a new USENET news article to be posted.
  3014. Type \[describe-mode] once editing the article to get a list of commands.Frmail
  3015. Read and edit incoming mail.
  3016. Moves messages into file named by  rmail-file-name  (a babyl format file)
  3017.  and edits that file in RMAIL Mode.
  3018. Type \[describe-mode] once editing that file, for a list of RMAIL commands.
  3019.  
  3020. May be called with filename as argument;
  3021. then performs rmail editing on that file,
  3022. but does not copy any new mail into the file.Frmail-input
  3023. Run RMAIL on file FILENAME.Vrmail-dont-reply-to-names
  3024. *A regular expression specifying names to prune in replying to messages.
  3025. nil means don't reply to yourself.Vrmail-default-dont-reply-to-names
  3026. A regular expression specifying part of the value of the default value of
  3027. the variable `rmail-dont-reply-to-names', for when the user does not set
  3028. `rmail-dont-reply-to-names' explicitly.  (The other part of the default
  3029. value is the user's name.)
  3030. It is useful to set this variable in the site customisation file.Vrmail-primary-inbox-list
  3031. *List of files which are inboxes for user's primary mail file ~/RMAIL.
  3032. `nil' means the default, which is ("~/mbox" "/usr/spool/mail/$USER")
  3033. (the second name varies depending on the operating system).Vrmail-ignored-headers
  3034. *Gubbish header fields one would rather not see.Vrmail-delete-after-output
  3035. *Non-nil means automatically delete a message that is copied to a file.Frun-scheme
  3036. Run an inferior Scheme process.
  3037. Output goes to the buffer `*scheme*'.
  3038. With argument, asks for a command line.Fscheme-mode
  3039. Major mode for editing Scheme code.
  3040. Editing commands are similar to those of lisp-mode.
  3041.  
  3042. In addition, if an inferior Scheme process is running, some additional
  3043. commands will be defined, for evaluating expressions and controlling
  3044. the interpreter, and the state of the process will be displayed in the
  3045. modeline of all Scheme buffers.  The names of commands that interact
  3046. with the Scheme process start with "xscheme-".  For more information
  3047. see the documentation for xscheme-interaction-mode.
  3048.  
  3049. Commands:
  3050. Delete converts tabs to spaces as it moves back.
  3051. Blank lines separate paragraphs.  Semicolons start comments.
  3052. \{scheme-mode-map}
  3053. Entry to this mode calls the value of scheme-mode-hook
  3054. if that value is non-nil.Fscribe-mode
  3055. Major mode for editing files of Scribe (a text formatter) source.
  3056. Scribe-mode is similar text-mode, with a few extra commands added.
  3057. \{scribe-mode-map}
  3058.  
  3059. Interesting variables:
  3060.  
  3061. scribe-fancy-paragraphs
  3062.   Non-nil makes Scribe mode use a different style of paragraph separation.
  3063.  
  3064. scribe-electric-quote
  3065.   Non-nil makes insert of double quote use `` or '' depending on context.
  3066.  
  3067. scribe-electric-parenthesis
  3068.   Non-nil makes an open-parenthesis char (one of `([<{')
  3069.   automatically insert its close if typed after an @Command form.Vsend-mail-function
  3070. Function to call to send the current buffer as mail.
  3071. The headers are delimited by a string found in mail-header-separator.Vmail-self-blind
  3072. *Non-nil means insert BCC to self in messages to be sent.
  3073. This is done when the message is initialized,
  3074. so you can remove or alter the BCC field to override the default.Vmail-interactive
  3075. *Non-nil means when sending a message wait for and display errors.
  3076. nil means let mailer mail back a message to report errors.Vmail-yank-ignored-headers
  3077. Delete these headers from old message when it's inserted in a reply.Vmail-header-separator
  3078. *Line used to separate headers from text in messages being composed.Vmail-archive-file-name
  3079. *Name of file to write all outgoing messages in, or nil for none.Vmail-aliases
  3080. Alias of mail address aliases,
  3081. or t meaning should be initialized from .mailrc.Fmail-other-window
  3082. Like `mail' command, but display mail buffer in another window.Fmail
  3083. Edit a message to be sent.  Argument means resume editing (don't erase).
  3084. Returns with message buffer selected; value t if message freshly initialized.
  3085. While editing message, type C-c C-c to send the message and exit.
  3086.  
  3087. Various special commands starting with C-c are available in sendmail mode
  3088. to move to message header fields:
  3089. \{mail-mode-map}
  3090.  
  3091. If mail-self-blind is non-nil, a BCC to yourself is inserted
  3092. when the message is initialized.
  3093.  
  3094. If mail-default-reply-to is non-nil, it should be an address (a string);
  3095. a Reply-to: field with that address is inserted.
  3096.  
  3097. If mail-archive-file-name is non-nil, an FCC field with that file name
  3098. is inserted.
  3099.  
  3100. If mail-setup-hook is bound, its value is called with no arguments
  3101. after the message is initialized.  It can add more default fields.
  3102.  
  3103. When calling from a program, the second through fifth arguments
  3104.  TO, SUBJECT, IN-REPLY-TO and CC specify if non-nil
  3105.  the initial contents of those header fields.
  3106.  These arguments should not have final newlines.
  3107. The sixth argument REPLYBUFFER is a buffer whose contents
  3108.  should be yanked if the user types C-c C-y.Vmail-use-rfc822
  3109. *If non-nil, use a full, hairy RFC822 parser on mail addresses.
  3110. Otherwise, (the default) use a smaller, somewhat faster and
  3111. often-correct parser.Fserver-start
  3112. Allow this Emacs process to be a server for client processes.
  3113. This starts a server communications subprocess through which
  3114. client "editors" can send your editing commands to this Emacs job.
  3115. To use the server, set up the program `etc/emacsclient' in the
  3116. Emacs distribution as your standard "editor".
  3117.  
  3118. Prefix arg means just kill any existing server communications subprocess.Frun-lisp
  3119. Run an inferior Lisp process, input and output via buffer *lisp*.Fshell
  3120. Run an inferior shell, with I/O through buffer *shell*.
  3121. If buffer exists but shell process is not running, make new shell.
  3122. Program used comes from variable explicit-shell-file-name,
  3123.  or (if that is nil) from the ESHELL environment variable,
  3124.  or else from SHELL if there is no ESHELL.
  3125. If a file ~/.emacs_SHELLNAME exists, it is given as initial input
  3126.  (Note that this may lose due to a timing error if the shell
  3127.   discards input when it starts up.)
  3128. The buffer is put in shell-mode, giving commands for sending input
  3129. and controlling the subjobs of the shell.  See shell-mode.
  3130. See also variable shell-prompt-pattern.
  3131.  
  3132. The shell file name (sans directories) is used to make a symbol name
  3133. such as `explicit-csh-arguments'.  If that symbol is a variable,
  3134. its value is used as a list of arguments when invoking the shell.
  3135. Otherwise, one argument `-i' is passed to the shell.
  3136.  
  3137. Note that many people's .cshrc files unconditionally clear the prompt.
  3138. If yours does, you will probably want to change it.Fsort-lines
  3139. Sort lines in region alphabetically; argument means descending order.
  3140. Called from a program, there are three arguments:
  3141. REVERSE (non-nil means reverse order), BEG and END (region to sort).Fsort-paragraphs
  3142. Sort paragraphs in region alphabetically; argument means descending order.
  3143. Called from a program, there are three arguments:
  3144. REVERSE (non-nil means reverse order), BEG and END (region to sort).Fsort-pages
  3145. Sort pages in region alphabetically; argument means descending order.
  3146. Called from a program, there are three arguments:
  3147. REVERSE (non-nil means reverse order), BEG and END (region to sort).Fsort-numeric-fields
  3148. Sort lines in region numerically by the ARGth field of each line.
  3149. Fields are separated by whitespace and numbered from 1 up.
  3150. Specified field must contain a number in each line of the region.
  3151. With a negative arg, sorts by the -ARG'th field, in reverse order.
  3152. Called from a program, there are three arguments:
  3153. FIELD, BEG and END.  BEG and END specify region to sort.Fsort-fields
  3154. Sort lines in region lexicographically by the ARGth field of each line.
  3155. Fields are separated by whitespace and numbered from 1 up.
  3156. With a negative arg, sorts by the -ARG'th field, in reverse order.
  3157. Called from a program, there are three arguments:
  3158. FIELD, BEG and END.  BEG and END specify region to sort.Fsort-columns
  3159. Sort lines in region alphabetically by a certain range of columns.
  3160. For the purpose of this command, the region includes
  3161. the entire line that point is in and the entire line the mark is in.
  3162. The column positions of point and mark bound the range of columns to sort on.
  3163. A prefix argument means sort into reverse order.
  3164.  
  3165. Note that sort-columns uses the sort utility program and therefore
  3166. cannot work on text containing TAB characters.  Use M-x untabify
  3167. to convert tabs to spaces before sorting.Fsort-regexp-fields
  3168. Sort the region lexicographically as specifed by RECORD-REGEXP and KEY.
  3169. RECORD-REGEXP specifies the textual units which should be sorted.
  3170.   For example, to sort lines RECORD-REGEXP would be "^.*$"
  3171. KEY specifies the part of each record (ie each match for RECORD-REGEXP)
  3172.   is to be used for sorting.
  3173.   If it is "\digit" then the digit'th "\(...\)" match field from
  3174.   RECORD-REGEXP is used.
  3175.   If it is "\&" then the whole record is used.
  3176.   Otherwise, it is a regular-expression for which to search within the record.
  3177. If a match for KEY is not found within a record then that record is ignored.
  3178.  
  3179. With a negative prefix arg sorts in reverse order.
  3180.  
  3181. For example: to sort lines in the region by the first word on each line
  3182.  starting with the letter "f",
  3183.  RECORD-REGEXP would be "^.*$" and KEY "\<f\w*\>"Fspell-buffer
  3184. Check spelling of every word in the buffer.
  3185. For each incorrect word, you are asked for the correct spelling
  3186. and then put into a query-replace to fix some or all occurrences.
  3187. If you do not want to change a word, just give the same word
  3188. as its "correct" spelling; then the query replace is skipped.Fspell-region
  3189. Like spell-buffer but applies only to region.
  3190. From program, applies from START to END.Fspell-word
  3191. Check spelling of word at or before point.
  3192. If it is not correct, ask user for the correct spelling
  3193. and query-replace the entire buffer to substitute it.Fspell-string
  3194. Check spelling of string supplied as argument.Funtabify
  3195. Convert all tabs in region to multiple spaces, preserving columns.
  3196. The variable tab-width controls the action.Ftabify
  3197. Convert multiple spaces in region to tabs when possible.
  3198. A group of spaces is partially replaced by tabs
  3199. when this can be done without changing the column they end at.
  3200. The variable tab-width controls the action.Ffind-tag
  3201. Find tag (in current tag table) whose name contains TAGNAME.
  3202.  Selects the buffer that the tag is contained in
  3203. and puts point at its definition.
  3204.  If TAGNAME is a null string, the expression in the buffer
  3205. around or before point is used as the tag name.
  3206.  If second arg NEXT is non-nil (interactively, with prefix arg),
  3207. searches for the next tag in the tag table
  3208. that matches the tagname used in the previous find-tag.
  3209.  
  3210. See documentation of variable tags-file-name.Ffind-tag-other-window
  3211. Find tag (in current tag table) whose name contains TAGNAME.
  3212.  Selects the buffer that the tag is contained in in another window
  3213. and puts point at its definition.
  3214.  If TAGNAME is a null string, the expression in the buffer
  3215. around or before point is used as the tag name.
  3216.  If second arg NEXT is non-nil (interactively, with prefix arg),
  3217. searches for the next tag in the tag table
  3218. that matches the tagname used in the previous find-tag.
  3219.  
  3220. See documentation of variable tags-file-name.Flist-tags
  3221. Display list of tags in file FILE.
  3222. FILE should not contain a directory spec
  3223. unless it has one in the tag table.Fnext-file
  3224. Select next file among files in current tag table.
  3225. Non-nil argument (prefix arg, if interactive)
  3226. initializes to the beginning of the list of files in the tag table.Ftags-apropos
  3227. Display list of all tags in tag table REGEXP matches.Ftags-loop-continue
  3228. Continue last \[tags-search] or \[tags-query-replace] command.
  3229. Used noninteractively with non-nil argument
  3230. to begin such a command.  See variable tags-loop-form.Ftag-table-files
  3231. Return a list of files in the current tag table.
  3232. File names returned are absolute.Ftags-query-replace
  3233. Query-replace-regexp FROM with TO through all files listed in tag table.
  3234. Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
  3235. If you exit (C-G or ESC), you can resume the query-replace
  3236. with the command \[tags-loop-continue].
  3237.  
  3238. See documentation of variable tags-file-name.Ftags-search
  3239. Search through all files listed in tag table for match for REGEXP.
  3240. Stops when a match is found.
  3241. To continue searching for next match, use command \[tags-loop-continue].
  3242.  
  3243. See documentation of variable tags-file-name.Fvisit-tags-table
  3244. Tell tags commands to use tag table file FILE.
  3245. FILE should be the name of a file created with the `etags' program.
  3246. A directory name is ok too; it means file TAGS in that directory.Ftelnet
  3247. Open a network login connection to host named HOST (a string).
  3248. Communication with HOST is recorded in a buffer *HOST-telnet*.
  3249. Normally input is edited in Emacs and sent a line at a time.Fterminal-emulator
  3250. Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
  3251. ARGS is a list of argument-strings.  Remaining arguments are WIDTH and HEIGHT.
  3252. BUFFER's contents are made an image of the display generated by that program,
  3253. and any input typed when BUFFER is the current Emacs buffer is sent to that
  3254. program an keyboard input.
  3255.  
  3256. Interactively, BUFFER defaults to "*terminal*" and PROGRAM and ARGS
  3257. are parsed from an input-string using your usual shell.
  3258. WIDTH and HEIGHT are determined from the size of the current window
  3259. -- WIDTH will be one less than the window's width, HEIGHT will be its height.
  3260.  
  3261. To switch buffers and leave the emulator, or to give commands
  3262. to the emulator itself (as opposed to the program running under it),
  3263. type Control-^.  The following character is an emulator command.
  3264. Type Control-^ twice to send it to the subprogram.
  3265. This escape character may be changed using the variable `terminal-escape-char'.
  3266.  
  3267. `Meta' characters may not currently be sent through the terminal emulator.
  3268.  
  3269. Here is a list of some of the variables which control the behaviour
  3270. of the emulator -- see their documentation for more information:
  3271. terminal-escape-char, terminal-scrolling, terminal-more-processing,
  3272. terminal-redisplay-interval.
  3273.  
  3274. This function calls the value of terminal-mode-hook if that exists
  3275. and is non-nil after the terminal buffer has been set up and the
  3276. subprocess started.
  3277.  
  3278. Presently with `termcap' only; if somebody sends us code to make this
  3279. work with `terminfo' we will try to use it.Flatex-mode
  3280. Major mode for editing files of input for LaTeX.
  3281. Makes $ and } display the characters they match.
  3282. Makes " insert `` when it seems to be the beginning of a quotation,
  3283. and '' when it appears to be the end; it inserts " only after a \.
  3284.  
  3285. Use \[TeX-region] to run LaTeX on the current region, plus the preamble
  3286. copied from the top of the file (containing \documentstyle, etc.),
  3287. running LaTeX under a special subshell.  \[TeX-buffer] does the whole buffer.
  3288. \[TeX-print] prints the .dvi file made by either of these.
  3289.  
  3290. Use \[validate-TeX-buffer] to check buffer for paragraphs containing
  3291. mismatched $'s or braces.
  3292.  
  3293. Special commands:
  3294. \{TeX-mode-map}
  3295.  
  3296. Mode variables:
  3297. TeX-directory
  3298.     Directory in which to create temporary files for TeX jobs
  3299.     run by \[TeX-region] or \[TeX-buffer].
  3300. TeX-dvi-print-command
  3301.     Command string used by \[TeX-print] to print a .dvi file.
  3302. TeX-show-queue-command
  3303.     Command string used by \[TeX-show-print-queue] to show the print
  3304.     queue that \[TeX-print] put your job on.
  3305.  
  3306. Entering LaTeX mode calls the value of text-mode-hook,
  3307. then the value of TeX-mode-hook, and then the value
  3308. of LaTeX-mode-hook.Fplain-tex-mode
  3309. Major mode for editing files of input for plain TeX.
  3310. Makes $ and } display the characters they match.
  3311. Makes " insert `` when it seems to be the beginning of a quotation,
  3312. and '' when it appears to be the end; it inserts " only after a \.
  3313.  
  3314. Use \[TeX-region] to run TeX on the current region, plus a "header"
  3315. copied from the top of the file (containing macro definitions, etc.),
  3316. running TeX under a special subshell.  \[TeX-buffer] does the whole buffer.
  3317. \[TeX-print] prints the .dvi file made by either of these.
  3318.  
  3319. Use \[validate-TeX-buffer] to check buffer for paragraphs containing
  3320. mismatched $'s or braces.
  3321.  
  3322. Special commands:
  3323. \{TeX-mode-map}
  3324.  
  3325. Mode variables:
  3326. TeX-directory
  3327.     Directory in which to create temporary files for TeX jobs
  3328.     run by \[TeX-region] or \[TeX-buffer].
  3329. TeX-dvi-print-command
  3330.     Command string used by \[TeX-print] to print a .dvi file.
  3331. TeX-show-queue-command
  3332.     Command string used by \[TeX-show-print-queue] to show the print
  3333.     queue that \[TeX-print] put your job on.
  3334.  
  3335. Entering plain-TeX mode calls the value of text-mode-hook,
  3336. then the value of TeX-mode-hook, and then the value
  3337. of plain-TeX-mode-hook.Ftex-mode
  3338. Major mode for editing files of input for TeX or LaTeX.
  3339. Trys to intuit whether this file is for plain TeX or LaTeX and
  3340. calls plain-tex-mode or latex-mode.  If it cannot be determined
  3341. (e.g., there are no commands in the file), the value of
  3342. TeX-default-mode is used.Ftexinfo-mode
  3343. Major mode for editing texinfo files.
  3344. These are files that are input for TEX and also to be turned
  3345. into Info files by \[texinfo-format-buffer].
  3346. These files must be written in a very restricted and
  3347. modified version of TEX input format.
  3348.  
  3349. As for editing commands, like text-mode except for syntax table,
  3350. which is set up so expression commands skip texinfo bracket groups.Ftexinfo-format-buffer
  3351. Process the current buffer as texinfo code, into an Info file.
  3352. The Info file output is generated in a buffer
  3353. visiting the Info file names specified in the @setfilename command.
  3354.  
  3355. Non-nil argument (prefix, if interactive) means don't make tag table
  3356. and don't split the file if large.  You can use Info-tagify and
  3357. Info-split to do these manually.Ftexinfo-format-region
  3358. Convert the the current region of the Texinfo file to Info format.
  3359. This lets you see what that part of the file will look like in Info.
  3360. The command is bound to \[texinfo-format-region].  The text that is
  3361. converted to Info is stored in a temporary buffer.Fbatch-texinfo-format
  3362. Runs  texinfo-format-buffer  on the files remaining on the command line.
  3363. Must be used only with -batch, and kills emacs on completion.
  3364. Each file will be processed even if an error occurred previously.
  3365. For example, invoke
  3366.   "emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo".Fdisplay-time
  3367. Display current time and load level in mode line of each buffer.
  3368. Updates automatically every minute.
  3369. If display-time-day-and-date is non-nil, the current day and date
  3370. are displayed as well.Funderline-region
  3371. Underline all nonblank characters in the region.
  3372. Works by overstriking underscores.
  3373. Called from program, takes two arguments START and END
  3374. which specify the range to operate on.Fununderline-region
  3375. Remove all underlining (overstruck underscores) in the region.
  3376. Called from program, takes two arguments START and END
  3377. which specify the range to operate on.Fask-user-about-lock
  3378. Ask user what to do when he wants to edit FILE but it is locked by USER.
  3379. This function has a choice of three things to do:
  3380.   do (signal 'buffer-file-locked (list FILE USER))
  3381.     to refrain from editing the file
  3382.   return t (grab the lock on the file)
  3383.   return nil (edit the file even though it is locked).
  3384. You can rewrite it to use any criterion you like to choose which one to do.Fask-user-about-supersession-threat
  3385. Ask a user who is about to modify an obsolete buffer what to do.
  3386. This function has two choices: it can return, in which case the modification
  3387. of the buffer will proceed, or it can (signal 'file-supersession (file)),
  3388. in which case the proposed buffer modification will not be made.
  3389. You can rewrite this to use any criterion you like to choose which one to do.Fvi-mode
  3390. Major mode that acts like the `vi' editor.
  3391. The purpose of this mode is to provide you the combined power of vi (namely,
  3392. the "cross product" effect of commands and repeat last changes) and Emacs.
  3393.  
  3394. This command redefines nearly all keys to look like vi commands.
  3395. It records the previous major mode, and any vi command for input
  3396. (`i', `a', `s', etc.) switches back to that mode.
  3397. Thus, ordinary Emacs (in whatever major mode you had been using)
  3398. is "input" mode as far as vi is concerned.
  3399.  
  3400. To get back into vi from "input" mode, you must issue this command again.
  3401. Therefore, it is recommended that you assign it to a key.
  3402.  
  3403. Major differences between this mode and real vi :
  3404.  
  3405. * Limitations and unsupported features
  3406.   - Search patterns with line offset (e.g. /pat/+3 or /pat/z.) are
  3407.     not supported.
  3408.   - Ex commands are not implemented; try ':' to get some hints.
  3409.   - No line undo (i.e. the 'U' command), but multi-undo is a standard feature.
  3410.  
  3411. * Modifications
  3412.   - The stopping positions for some point motion commands (word boundary,
  3413.     pattern search) are slightly different from standard 'vi'.
  3414.     Also, no automatic wrap around at end of buffer for pattern searching.
  3415.   - Since changes are done in two steps (deletion then insertion), you need
  3416.     to undo twice to completely undo a change command.  But this is not needed
  3417.     for undoing a repeated change command.
  3418.   - No need to set/unset 'magic', to search for a string with regular expr
  3419.     in it just put a prefix arg for the search commands.  Replace cmds too.
  3420.   - ^R is bound to incremental backward search, so use ^L to redraw screen.
  3421.  
  3422. * Extensions
  3423.   - Some standard (or modified) Emacs commands were integrated, such as
  3424.     incremental search, query replace, transpose objects, and keyboard macros.
  3425.   - In command state, ^X links to the 'ctl-x-map', and ESC can be linked to
  3426.     esc-map or set undefined.  These can give you the full power of Emacs.
  3427.   - See vi-com-map for those keys that are extensions to standard vi, e.g.
  3428.     `vi-name-last-change-or-macro', `vi-verify-spelling', `vi-locate-def',
  3429.     `vi-mark-region', and 'vi-quote-words'.  Some of them are quite handy.
  3430.   - Use \[vi-switch-mode] to switch among different modes quickly.
  3431.   
  3432. Syntax table and abbrevs while in vi mode remain as they were in Emacs.Fview-file
  3433. View FILE in View mode, returning to previous buffer when done.
  3434. The usual Emacs commands are not available; instead,
  3435. a special set of commands (mostly letters and punctuation)
  3436. are defined for moving around in the buffer.
  3437. Space scrolls forward, Delete scrolls backward.
  3438. For list of all View commands, type ? or h while viewing.
  3439.  
  3440. Calls the value of  view-hook  if that is non-nil.Fview-buffer
  3441. View BUFFER in View mode, returning to previous buffer when done.
  3442. The usual Emacs commands are not available; instead,
  3443. a special set of commands (mostly letters and punctuation)
  3444. are defined for moving around in the buffer.
  3445. Space scrolls forward, Delete scrolls backward.
  3446. For list of all View commands, type ? or h while viewing.
  3447.  
  3448. Calls the value of  view-hook  if that is non-nil.Fview-mode
  3449. Major mode for viewing text but not editing it.
  3450. Letters do not insert themselves.  Instead these commands are provided.
  3451. Most commands take prefix arguments.  Commands dealing with lines
  3452. default to "scroll size" lines (initially size of window).
  3453. Search commands default to a repeat count of one.
  3454. M-< or <    move to beginning of buffer.
  3455. M-> or >    move to end of buffer.
  3456. C-v or Space    scroll forward lines.
  3457. M-v or DEL    scroll backward lines.
  3458. CR or LF    scroll forward one line (backward with prefix argument).
  3459. z        like Space except set number of lines for further
  3460.            scrolling commands to scroll by.
  3461. C-u and Digits    provide prefix arguments.  `-' denotes negative argument.
  3462. =        prints the current line number.
  3463. g        goes to line given by prefix argument.
  3464. / or M-C-s    searches forward for regular expression
  3465. \ or M-C-r    searches backward for regular expression.
  3466. n        searches forward for last regular expression.
  3467. p        searches backward for last regular expression.
  3468. C-@ or .    set the mark.
  3469. x        exchanges point and mark.
  3470. C-s or s    do forward incremental search.
  3471. C-r or r    do reverse incremental search.
  3472. @ or '        return to mark and pops mark ring.
  3473.           Mark ring is pushed at start of every
  3474.           successful search and when jump to line to occurs.
  3475.           The mark is set on jump to buffer start or end.
  3476. ? or h        provide help message (list of commands).
  3477. C-h        provides help (list of commands or description of a command).
  3478. C-n        moves down lines vertically.
  3479. C-p        moves upward lines vertically.
  3480. C-l        recenters the screen.
  3481. q or C-c    exit view-mode and return to previous buffer.
  3482.  
  3483. Entry to this mode calls the value of  view-hook  if non-nil.
  3484. \{view-mode-map}Fvip-mode
  3485. Begin emulating the vi editor.  This is distinct from `vi-mode'.
  3486. This emulator has different capabilities from the `vi-mode' emulator.
  3487. See the text at the beginning of the source file .../lisp/vip.el
  3488. in the Emacs distribution.Fyow
  3489. Return or display a Zippy quotationFpsychoanalyze-pinhead
  3490. Zippy goes to the analyst.Fisearch-forward
  3491. Do incremental search forward.
  3492. As you type characters, they add to the search string and are found.
  3493. Type Delete to cancel characters from end of search string.
  3494. Type ESC to exit, leaving point at location found.
  3495. Type C-s to search again forward, C-r to search again backward.
  3496. Type C-w to yank word from buffer onto end of search string and search for it.
  3497. Type C-y to yank rest of line onto end of search string, etc.
  3498. Type C-q to quote control character to search for it.
  3499. Other control and meta characters terminate the search
  3500.  and are then executed normally.
  3501. The above special characters are mostly controlled by parameters;
  3502.  do M-x apropos on search-.*-char to find them.
  3503. C-g while searching or when search has failed
  3504.  cancels input back to what has been found successfully.
  3505. C-g when search is successful aborts and moves point to starting point.Fisearch-forward-regexp
  3506. Do incremental search forward for regular expression.
  3507. Like ordinary incremental search except that your input
  3508. is treated as a regexp.  See \[isearch-forward] for more info.Fisearch-backward
  3509. Do incremental search backward.
  3510. See \[isearch-forward] for more information.Fisearch-backward-regexp
  3511. Do incremental search backward for regular expression.
  3512. Like ordinary incremental search except that your input
  3513. is treated as a regexp.  See \[isearch-forward] for more info.Vsearch-last-string
  3514. Last string search for by a non-regexp search command.
  3515. This does not include direct calls to the primitive search functions,
  3516. and does not include searches that are aborted.Vsearch-last-regexp
  3517. Last string searched for by a regexp search command.
  3518. This does not include direct calls to the primitive search functions,
  3519. and does not include searches that are aborted.Vsearch-repeat-char
  3520. *Character to repeat incremental search forwards.Vsearch-reverse-char
  3521. *Character to repeat incremental search backwards.Vsearch-exit-char
  3522. *Character to exit incremental search.Vsearch-delete-char
  3523. *Character to delete from incremental search string.Vsearch-quote-char
  3524. *Character to quote special characters for incremental search.Vsearch-yank-word-char
  3525. *Character to pull next word from buffer into search string.Vsearch-yank-line-char
  3526. *Character to pull rest of line from buffer into search string.Vsearch-exit-option
  3527. *Non-nil means random control characters terminate incremental search.Vsearch-slow-window-lines
  3528. *Number of lines in slow search display windows.
  3529. These are the short windows used during incremental search on slow terminals.
  3530. Negative means put the slow search window at the top (normally it's at bottom)
  3531. and the value is minus the number of lines.Vsearch-slow-speed
  3532. *Highest terminal speed at which to use "slow" style incremental search.
  3533. This is the style where a one-line window is created to show the line
  3534. that the search has reached.Fquery-replace
  3535. Replace some occurrences of FROM-STRING with TO-STRING.
  3536. As each match is found, the user must type a character saying
  3537. what to do with it.  For directions, type \[help-command] at that time.
  3538.  
  3539. Preserves case in each replacement if  case-replace  and  case-fold-search
  3540. are non-nil and FROM-STRING has no uppercase letters.
  3541. Third arg DELIMITED (prefix arg if interactive) non-nil means replace
  3542. only matches surrounded by word boundaries.Fquery-replace-regexp
  3543. Replace some things after point matching REGEXP with TO-STRING.
  3544. As each match is found, the user must type a character saying
  3545. what to do with it.  For directions, type \[help-command] at that time.
  3546.  
  3547. Preserves case in each replacement if  case-replace  and  case-fold-search
  3548. are non-nil and REGEXP has no uppercase letters.
  3549. Third arg DELIMITED (prefix arg if interactive) non-nil means replace
  3550. only matches surrounded by word boundaries.
  3551. In TO-STRING, \& means insert what matched REGEXP,
  3552. and \=\<n> means insert what matched <n>th \(...\) in REGEXP.Freplace-string
  3553. Replace occurrences of FROM-STRING with TO-STRING.
  3554. Preserve case in each match if  case-replace  and  case-fold-search
  3555. are non-nil and FROM-STRING has no uppercase letters.
  3556. Third arg DELIMITED (prefix arg if interactive) non-nil means replace
  3557. only matches surrounded by word boundaries.Freplace-regexp
  3558. Replace things after point matching REGEXP with TO-STRING.
  3559. Preserve case in each match if case-replace and case-fold-search
  3560. are non-nil and REGEXP has no uppercase letters.
  3561. Third arg DELIMITED (prefix arg if interactive) non-nil means replace
  3562. only matches surrounded by word boundaries.
  3563. In TO-STRING, \& means insert what matched REGEXP,
  3564. and \=\<n> means insert what matched <n>th \(...\) in REGEXP.Vcommand-line-processed
  3565. t once command line has been processedVinhibit-startup-message
  3566. *Non-nil inhibits the initial startup messages.
  3567. This is for use in your personal init file, once you are familiar
  3568. with the contents of the startup message.Vinhibit-default-init
  3569. *Non-nil inhibits loading the `default' library.Vcommand-switch-alist
  3570. Alist of command-line switches.
  3571. Elements look like (SWITCH-STRING . HANDLER-FUNCTION).
  3572. HANDLER-FUNCTION receives switch name as sole arg;
  3573. remaining command-line args are in the variable `command-line-args-left'.Vterm-setup-hook
  3574. Function to be called after loading terminal-specific lisp code.
  3575. It is called with no arguments.  You can use this to override the
  3576. definitions made by the terminal-specific file.Vinitial-major-mode
  3577. Major mode command symbol to use for the initial *scratch* buffer.Fforward-sexp
  3578. Move forward across one balanced expression.
  3579. With argument, do this that many times.Fbackward-sexp
  3580. Move backward across one balanced expression.
  3581. With argument, do this that many times.Fmark-sexp
  3582. Set mark ARG sexps from point.Fforward-list
  3583. Move forward across one balanced group of parentheses.
  3584. With argument, do this that many times.Fbackward-list
  3585. Move backward across one balanced group of parentheses.
  3586. With argument, do this that many times.Fdown-list
  3587. Move forward down one level of parentheses.
  3588. With argument, do this that many times.
  3589. A negative argument means move backward but still go down a level.Fbackward-up-list
  3590. Move backward out of one level of parentheses.
  3591. With argument, do this that many times.
  3592. A negative argument means move forward but still to a less deep spot.Fup-list
  3593. Move forward out of one level of parentheses.
  3594. With argument, do this that many times.
  3595. A negative argument means move backward but still to a less deep spot.Fkill-sexp
  3596. Kill the syntactic expression following the cursor.
  3597. With argument, kill that many expressions after (or before) the cursor.Fbackward-kill-sexp
  3598. Kill the syntactic expression preceding the cursor.
  3599. With argument, kill that many expressions before (or after) the cursor.Fbeginning-of-defun
  3600. Move backward to next beginning-of-defun.
  3601. With argument, do this that many times.
  3602. Returns t unless search stops due to end of buffer.Fend-of-defun
  3603. Move forward to next end of defun.
  3604. An end of a defun is found by moving forward from the beginning of one.Fmark-defun
  3605. Put mark at end of defun, point at beginning.Finsert-parentheses
  3606. Put parentheses around next ARG sexps.  Leave point after open-paren.
  3607. No argument is equivalent to zero: just insert () and leave point between.Fmove-past-close-and-reindent
  3608. Move past next ), delete indentation before it, then indent after it.Flisp-complete-symbol
  3609. Perform completion on Lisp symbol preceding point.
  3610. That symbol is compared against the symbols that exist
  3611. and any additional characters determined by what is there
  3612. are inserted.
  3613. If the symbol starts just after an open-parenthesis,
  3614. only symbols with function definitions are considered.
  3615. Otherwise, all symbols with function definitions, values
  3616. or properties are considered.Fforward-page
  3617. Move forward to page boundary.  With arg, repeat, or go back if negative.
  3618. A page boundary is any line whose beginning matches the regexp  page-delimiter.Fbackward-page
  3619. Move backward to page boundary.  With arg, repeat, or go fwd if negative.
  3620. A page boundary is any line whose beginning matches the regexp  page-delimiter.Fmark-page
  3621. Put mark at end of page, point at beginning.
  3622. A numeric arg specifies to move forward or backward by that many pages,
  3623. thus marking a page other than the one point was originally in.Fnarrow-to-page
  3624. Make text outside current page invisible.
  3625. A numeric arg specifies to move forward or backward by that many pages,
  3626. thus showing a page other than the one point was originally in.Fcount-lines-page
  3627. Report number of lines on current page, and how many are before or after point.Fwhat-page
  3628. Print page and line number of point.Vregister-alist
  3629. Alist of elements (NAME . CONTENTS), one for each Emacs register.
  3630. NAME is a character (a number).  CONTENTS is a string, number,
  3631. mark or list.  A list represents a rectangle; its elements are strings.Fget-register
  3632. Return contents of Emacs register named CHAR, or nil if none.Fset-register
  3633. Set contents of Emacs register named CHAR to VALUE.Fpoint-to-register
  3634. Store current location of point in a register.
  3635. Argument is a character, naming the register.Fregister-to-point
  3636. Move point to location stored in a register.
  3637. Argument is a character, naming the register.Fview-register
  3638. Display what is contained in register named REGISTER.
  3639. REGISTER is a character.Finsert-register
  3640. Insert contents of register REG.  REG is a character.
  3641. Normally puts point before and mark after the inserted text.
  3642. If optional second arg is non-nil, puts mark before and point after.
  3643. Interactively, second arg is non-nil if prefix arg is supplied.Fcopy-to-register
  3644. Copy region into register REG.
  3645. With prefix arg, delete as well.
  3646. Called from program, takes four args:
  3647. REG, START, END and DELETE-FLAG.
  3648. START and END are buffer positions indicating what to copy.Fappend-to-register
  3649. Append region to text in register REG.
  3650. With prefix arg, delete as well.
  3651. Called from program, takes four args:
  3652. REG, START, END and DELETE-FLAG.
  3653. START and END are buffer positions indicating what to append.Fprepend-to-register
  3654. Prepend region to text in register REG.
  3655. With prefix arg, delete as well.
  3656. Called from program, takes four args:
  3657. REG, START, END and DELETE-FLAG.
  3658. START and END are buffer positions indicating what to prepend.Fcopy-rectangle-to-register
  3659. Copy rectangular region into register REG.
  3660. With prefix arg, delete as well.
  3661. Called from program, takes four args:
  3662. REG, START, END and DELETE-FLAG.
  3663. START and END are buffer positions giving two corners of rectangle.Vparagraph-ignore-fill-prefix
  3664. Non-nil means the paragraph commands are not affected by fill-prefix.
  3665. This is desirable in modes where blank lines are the paragraph delimiters.Fforward-paragraph
  3666. Move forward to end of paragraph.  With arg, do it arg times.
  3667. A line which  paragraph-start  matches either separates paragraphs
  3668. (if  paragraph-separate  matches it also) or is the first line of a paragraph.
  3669. A paragraph end is the beginning of a line which is not part of the paragraph
  3670. to which the end of the previous line belongs, or the end of the buffer.Fbackward-paragraph
  3671. Move backward to start of paragraph.  With arg, do it arg times.
  3672. A paragraph start is the beginning of a line which is a first-line-of-paragraph
  3673. or which is ordinary text and follows a paragraph-separating line; except:
  3674. if the first real line of a paragraph is preceded by a blank line,
  3675. the paragraph starts at that blank line.
  3676. See forward-paragraph for more information.Fmark-paragraph
  3677. Put point at beginning of this paragraph, mark at end.Fkill-paragraph
  3678. Kill to end of paragraph.Fbackward-kill-paragraph
  3679. Kill back to start of paragraph.Ftranspose-paragraphs
  3680. Interchange this (or next) paragraph with previous one.Fforward-sentence
  3681. Move forward to next sentence-end.  With argument, repeat.
  3682. With negative argument, move backward repeatedly to sentence-beginning.
  3683. Sentence ends are identified by the value of sentence-end
  3684. treated as a regular expression.  Also, every paragraph boundary
  3685. terminates sentences as well.Fbackward-sentence
  3686. Move backward to start of sentence.  With arg, do it arg times.
  3687. See forward-sentence for more information.Fkill-sentence
  3688. Kill from point to end of sentence.
  3689. With arg, repeat, or backward if negative arg.Fbackward-kill-sentence
  3690. Kill back from point to start of sentence.
  3691. With arg, repeat, or forward if negative arg.Fmark-end-of-sentence
  3692. Put mark at end of sentence.  Arg works as in forward-sentence.Ftranspose-sentences
  3693. Interchange this (next) and previous sentence.Vlisp-mode-syntax-table
  3694. Vemacs-lisp-mode-syntax-table
  3695. Vlisp-mode-abbrev-table
  3696. Vemacs-lisp-mode-map
  3697. Femacs-lisp-mode
  3698. Major mode for editing Lisp code to run in Emacs.
  3699. Commands:
  3700. Delete converts tabs to spaces as it moves back.
  3701. Blank lines separate paragraphs.  Semicolons start comments.
  3702. \{emacs-lisp-mode-map}
  3703. Entry to this mode calls the value of emacs-lisp-mode-hook
  3704. if that value is non-nil.Flisp-mode
  3705. Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp.
  3706. Commands:
  3707. Delete converts tabs to spaces as it moves back.
  3708. Blank lines separate paragraphs.  Semicolons start comments.
  3709. \{lisp-mode-map}
  3710. Note that `run-lisp' may be used either to start an inferior Lisp job
  3711. or to switch back to an existing one.
  3712.  
  3713. Entry to this mode calls the value of lisp-mode-hook
  3714. if that value is non-nil.Flisp-send-defun
  3715. Send the current defun to the Lisp process made by M-x run-lisp.Flisp-interaction-mode
  3716. Major mode for typing and evaluating Lisp forms.
  3717. Like Lisp mode except that \[eval-print-last-sexp] evals the Lisp expression
  3718. before point, and prints its value into the buffer, advancing point.
  3719.  
  3720. Commands:
  3721. Delete converts tabs to spaces as it moves back.
  3722. Paragraphs are separated only by blank lines.  Semicolons start comments.
  3723. \{lisp-interaction-mode-map}
  3724. Entry to this mode calls the value of lisp-interaction-mode-hook
  3725. if that value is non-nil.Feval-print-last-sexp
  3726. Evaluate sexp before point; print value into current buffer.Feval-last-sexp
  3727. Evaluate sexp before point; print value in minibuffer.
  3728. With argument, print output into current buffer.Feval-defun
  3729. Evaluate defun that point is in or before.
  3730. Print value in minibuffer.
  3731. With argument, insert value in current buffer after the defun.Vlisp-indent-offset
  3732. Vlisp-indent-hook
  3733. Flisp-indent-line
  3734. Indent current line as Lisp code.
  3735. With argument, indent any additional lines of the same expression
  3736. rigidly along with this one.Fcalculate-lisp-indent
  3737. Return appropriate indentation for current line as Lisp code.
  3738. In usual case returns an integer: the column to indent to.
  3739. Can instead return a list, whose car is the column to indent to.
  3740. This means that following lines at the same level of indentation
  3741. should not necessarily be indented the same way.
  3742. The second element of the list is the buffer position
  3743. of the start of the containing expression.Vlisp-body-indent
  3744. Findent-sexp
  3745. Indent each line of the list starting just after point.Findent-code-rigidly
  3746. Indent all lines of code, starting in the region, sideways by ARG columns.
  3747. Does not affect lines starting inside comments or strings,
  3748. assuming that the start of the region is not inside them.
  3749. Called from a program, takes args START, END, COLUMNS and NOCHANGE-REGEXP.
  3750. The last is a regexp which, if matched at the beginning of a line,
  3751. means don't indent that line.Vtext-mode-syntax-table
  3752. Syntax table used while in text mode.Vtext-mode-abbrev-table
  3753. Abbrev table used while in text mode.Vtext-mode-map
  3754. Ftext-mode
  3755. Major mode for editing text intended for humans to read.  Special commands:\{text-mode-map}
  3756. Turning on text-mode calls the value of the variable text-mode-hook,
  3757. if that value is non-nil.Findented-text-mode
  3758. Major mode for editing indented text intended for humans to read.\{indented-text-mode-map}
  3759. Turning on indented-text-mode calls the value of the variable text-mode-hook,
  3760. if that value is non-nil.Fcenter-paragraph
  3761. Center each line in the paragraph at or after point.
  3762. See center-line for more info.Fcenter-region
  3763. Center each line starting in the region.
  3764. See center-line for more info.Fcenter-line
  3765. Center the line point is on, within the width specified by `fill-column'.
  3766. This means adjusting the indentation to match
  3767. the distance between the end of the text and `fill-column'.Vfill-individual-varying-indent
  3768. *Controls criterion for a new paragraph in `fill-individual-paragraphs'.
  3769. Non-nil means changing indent doesn't end a paragraph.
  3770. That mode can handle paragraphs with extra indentation on the first line,
  3771. but it requires separator lines between paragraphs.
  3772. Nil means that any change in indentation starts a new paragraph.Fset-fill-prefix
  3773. Set the fill-prefix to the current line up to point.
  3774. Filling expects lines to start with the fill prefix
  3775. and reinserts the fill prefix in each resulting line.Ffill-region-as-paragraph
  3776. Fill region as one paragraph: break lines to fit fill-column.
  3777. Prefix arg means justify too.
  3778. From program, pass args FROM, TO and JUSTIFY-FLAG.Ffill-paragraph
  3779. Fill paragraph at or after point.
  3780. Prefix arg means justify as well.Ffill-region
  3781. Fill each of the paragraphs in the region.
  3782. Prefix arg (non-nil third arg, if called from program)
  3783. means justify as well.Fjustify-current-line
  3784. Add spaces to line point is in, so it ends at fill-column.Ffill-individual-paragraphs
  3785. Fill each paragraph in region according to its individual fill prefix.
  3786.  
  3787. If `fill-individual-varying-indent' is non-nil,
  3788. then a mere change in indentation does not end a paragraph.  In this mode,
  3789. the indentation for a paragraph is the minimum indentation of any line in it.
  3790.  
  3791. Calling from a program, pass range to fill as first two arguments.
  3792.  
  3793. Optional third and fourth arguments JUSTIFY-FLAG and MAIL-FLAG:
  3794. JUSTIFY-FLAG to justify paragraphs (prefix arg),
  3795. MAIL-FLAG for a mail message, i. e. don't fill header lines.Vc-mode-abbrev-table
  3796. Abbrev table in use in C-mode buffers.Vc-mode-map
  3797. Keymap used in C mode.Fc-macro-expand
  3798. Display the result of expanding all C macros occurring in the region.
  3799. The expansion is entirely correct because it uses the C preprocessor.Vc-mode-syntax-table
  3800. Syntax table in use in C-mode buffers.Vc-indent-level
  3801. *Indentation of C statements with respect to containing block.Vc-brace-imaginary-offset
  3802. *Imagined indentation of a C open brace that actually follows a statement.Vc-brace-offset
  3803. *Extra indentation for braces, compared with other text in same context.Vc-argdecl-indent
  3804. *Indentation level of declarations of C function arguments.Vc-label-offset
  3805. *Offset of C label lines and case statements relative to usual indentation.Vc-continued-statement-offset
  3806. *Extra indent for lines not starting new statements.Vc-continued-brace-offset
  3807. *Extra indent for substatements that start with open-braces.
  3808. This is in addition to c-continued-statement-offset.Vc-auto-newline
  3809. *Non-nil means automatically newline before and after braces,
  3810. and after colons and semicolons, inserted in C code.Vc-tab-always-indent
  3811. *Non-nil means TAB in C mode should always reindent the current line,
  3812. regardless of where in the line point is when the TAB command is used.Fc-mode
  3813. Major mode for editing C code.
  3814. Expression and list commands understand all C brackets.
  3815. Tab indents for C code.
  3816. Comments are delimited with /* ... */.
  3817. Paragraphs are separated by blank lines only.
  3818. Delete converts tabs to spaces as it moves back.
  3819. \{c-mode-map}
  3820. Variables controlling indentation style:
  3821.  c-tab-always-indent
  3822.     Non-nil means TAB in C mode should always reindent the current line,
  3823.     regardless of where in the line point is when the TAB command is used.
  3824.  c-auto-newline
  3825.     Non-nil means automatically newline before and after braces,
  3826.     and after colons and semicolons, inserted in C code.
  3827.  c-indent-level
  3828.     Indentation of C statements within surrounding block.
  3829.     The surrounding block's indentation is the indentation
  3830.     of the line on which the open-brace appears.
  3831.  c-continued-statement-offset
  3832.     Extra indentation given to a substatement, such as the
  3833.     then-clause of an if or body of a while.
  3834.  c-continued-brace-offset
  3835.     Extra indentation given to a brace that starts a substatement.
  3836.     This is in addition to c-continued-statement-offset.
  3837.  c-brace-offset
  3838.     Extra indentation for line if it starts with an open brace.
  3839.  c-brace-imaginary-offset
  3840.     An open brace following other text is treated as if it were
  3841.     this far to the right of the start of its line.
  3842.  c-argdecl-indent
  3843.     Indentation level of declarations of C function arguments.
  3844.  c-label-offset
  3845.     Extra indentation for line that is a label, or case or default.
  3846.  
  3847. Settings for K&R and BSD indentation styles are
  3848.   c-indent-level                5    8
  3849.   c-continued-statement-offset  5    8
  3850.   c-brace-offset               -5   -8
  3851.   c-argdecl-indent              0    8
  3852.   c-label-offset               -5   -8
  3853.  
  3854. Turning on C mode calls the value of the variable c-mode-hook with no args,
  3855. if that value is non-nil.Felectric-c-brace
  3856. Insert character and correct line's indentation.Felectric-c-semi
  3857. Insert character and correct line's indentation.Felectric-c-terminator
  3858. Insert character and correct line's indentation.Fc-indent-command
  3859. Indent current line as C code, or in some cases insert a tab character.
  3860. If c-tab-always-indent is non-nil (the default), always indent current line.
  3861. Otherwise, indent the current line only if point is at the left margin
  3862. or in the line's indentation; otherwise insert a tab.
  3863.  
  3864. A numeric argument, regardless of its value,
  3865. means indent rigidly all the lines of the expression starting after point
  3866. so that this line becomes properly indented.
  3867. The relative indentation among the lines of the expression are preserved.Fc-indent-line
  3868. Indent current line as C code.
  3869. Return the amount the indentation changed by.Fcalculate-c-indent
  3870. Return appropriate indentation for current line as C code.
  3871. In usual case returns an integer: the column to indent to.
  3872. Returns nil if line starts inside a string, t if in a comment.Fcalculate-c-indent-within-comment
  3873. Return the indentation amount for line, assuming that
  3874. the current line is to be regarded as part of a block comment.Fc-backward-to-start-of-if
  3875. Move to the start of the last ``unbalanced'' if.Fmark-c-function
  3876. Put mark at end of C function, point at beginning.Findent-c-exp
  3877. Indent each line of the C grouping following point.Fkeep-lines
  3878. Delete all lines except those containing matches for REGEXP.
  3879. A match split across lines preserves all the lines it lies in.
  3880. Applies to all lines after point.Fflush-lines
  3881. Delete lines containing matches for REGEXP.
  3882. If a match is split across lines, all the lines it lies in are deleted.
  3883. Applies to lines after point.Fhow-many
  3884. Print number of matches for REGEXP following point.Foccur-mode
  3885. Major mode for output from \[occur].
  3886. Move point to one of the occurrences in this buffer,
  3887. then use \[occur-mode-goto-occurrence] to go to the same occurrence
  3888. in the buffer that the occurrences were found in.
  3889. \{occur-mode-map}Foccur-mode-goto-occurrence
  3890. Go to the line this occurrence was found in, in the buffer it was found in.Vlist-matching-lines-default-context-lines
  3891. *Default number of context lines to include around a list-matching-lines
  3892. match.  A negative number means to include that many lines before the match.
  3893. A positive number means to include that many lines both before and after.Foccur
  3894. Show all lines following point containing a match for REGEXP.
  3895. Display each line with NLINES lines before and after,
  3896.  or -NLINES before if NLINES is negative.
  3897. NLINES defaults to list-matching-lines-default-context-lines.
  3898. Interactively it is the prefix arg.
  3899.  
  3900. The lines are shown in a buffer named *Occur*.
  3901. It serves as a menu to find any of the occurrences in this buffer.
  3902. \[describe-mode] in that buffer will explain how.Fabbrev-mode
  3903. Toggle abbrev mode.
  3904. With arg, turn abbrev mode on iff arg is positive.
  3905. In abbrev mode, inserting an abbreviation causes it to expand
  3906. and be replaced by its expansion.Vedit-abbrevs-map
  3907. Keymap used in edit-abbrevs.Fkill-all-abbrevs
  3908. Undefine all defined abbrevs.Finsert-abbrevs
  3909. Insert after point a description of all defined abbrevs.
  3910. Mark is set after the inserted text.Flist-abbrevs
  3911. Display a list of all defined abbrevs.Fedit-abbrevs-mode
  3912. Major mode for editing the list of abbrev definitions.
  3913. \{edit-abbrevs-map}Fedit-abbrevs
  3914. Alter abbrev definitions by editing a list of them.
  3915. Selects a buffer containing a list of abbrev definitions.
  3916. You can edit them and type C-c C-c to redefine abbrevs
  3917. according to your editing.
  3918. Buffer contains a header line for each abbrev table,
  3919.  which is the abbrev table name in parentheses.
  3920. This is followed by one line per abbrev in that table:
  3921. NAME   USECOUNT   EXPANSION   HOOK
  3922. where NAME and EXPANSION are strings with quotes,
  3923. USECOUNT is an integer, and HOOK is any valid function
  3924. or may be omitted (it is usually omitted).Fedit-abbrevs-redefine
  3925. Redefine abbrevs according to current buffer contents.Fdefine-abbrevs
  3926. Define abbrevs according to current visible buffer contents.
  3927. See documentation of edit-abbrevs for info on the format of the
  3928. text you must have in the buffer.
  3929. With argument, eliminate all abbrev definitions except
  3930. the ones defined from the buffer now.Fread-abbrev-file
  3931. Read abbrev definitions from file written with write-abbrev-file.
  3932. Takes file name as argument.
  3933. Optional second argument non-nil means don't print anything.Fquietly-read-abbrev-file
  3934. Read abbrev definitions from file written with write-abbrev-file.
  3935. Takes file name as argument.  Does not print anything.Fwrite-abbrev-file
  3936. Write all abbrev definitions to file of Lisp code.
  3937. The file can be loaded to define the same abbrevs.Fadd-mode-abbrev
  3938. Define mode-specific abbrev for last word(s) before point.
  3939. Argument is how many words before point form the expansion;
  3940. or zero means the region is the expansion.
  3941. A negative argument means to undefine the specified abbrev.
  3942. Reads the abbreviation in the minibuffer.Fadd-global-abbrev
  3943. Define global (all modes) abbrev for last word(s) before point.
  3944. Argument is how many words before point form the expansion;
  3945. or zero means the region is the expansion.
  3946. A negative argument means to undefine the specified abbrev.
  3947. Reads the abbreviation in the minibuffer.Finverse-add-mode-abbrev
  3948. Define last word before point as a mode-specific abbrev.
  3949. With argument N, defines the Nth word before point.
  3950. Reads the expansion in the minibuffer.
  3951. Expands the abbreviation after defining it.Finverse-add-global-abbrev
  3952. Define last word before point as a global (mode-independent) abbrev.
  3953. With argument N, defines the Nth word before point.
  3954. Reads the expansion in the minibuffer.
  3955. Expands the abbreviation after defining it.Fabbrev-prefix-mark
  3956. Mark current point as the beginning of an abbrev.
  3957. Abbrev to be expanded starts here rather than at
  3958. beginning of word.  This way, you can expand an abbrev
  3959. with a prefix: insert the prefix, use this command,
  3960. then insert the abbrev.Fexpand-region-abbrevs
  3961. For abbrev occurrence in the region, offer to expand it.
  3962. The user is asked to type y or n for each occurrence.
  3963. A numeric argument means don't query; expand all abbrevs.
  3964. Calling from a program, arguments are START END &optional NOQUERY.VBuffer-menu-mode-map
  3965. FBuffer-menu-mode
  3966. Major mode for editing a list of buffers.
  3967. Each line describes one of the buffers in Emacs.
  3968. Letters do not insert themselves; instead, they are commands.
  3969. m -- mark buffer to be displayed.
  3970. q -- select buffer of line point is on.
  3971.   Also show buffers marked with m in other windows.
  3972. 1 -- select that buffer in full-screen window.
  3973. 2 -- select that buffer in one window,
  3974.   together with buffer selected before this one in another window.
  3975. f -- select that buffer in place of the buffer menu buffer.
  3976. o -- select that buffer in another window,
  3977.   so the buffer menu buffer remains visible in its window.
  3978. ~ -- clear modified-flag on that buffer.
  3979. s -- mark that buffer to be saved, and move down.
  3980. d or k -- mark that buffer to be deleted, and move down.
  3981. C-d -- mark that buffer to be deleted, and move up.
  3982. x -- delete or save marked buffers.
  3983. u -- remove all kinds of marks from current line.
  3984. Delete -- back up a line and remove marks.
  3985.  
  3986. Precisely,\{Buffer-menu-mode-map}FBuffer-menu-buffer
  3987. Return buffer described by this line of buffer menu.Fbuffer-menu
  3988. Make a menu of buffers so you can save, delete or select them.
  3989. With argument, show only buffers that are visiting files.
  3990. Type ? after invocation to get help on commands available.
  3991. Type q immediately to make the buffer menu go away.FBuffer-menu-mark
  3992. Mark buffer on this line for being displayed by \[Buffer-menu-select] command.FBuffer-menu-unmark
  3993. Cancel all requested operations on buffer on this line.FBuffer-menu-backup-unmark
  3994. Move up and cancel all requested operations on buffer on line above.FBuffer-menu-delete
  3995. Mark buffer on this line to be deleted by \[Buffer-menu-execute] command.FBuffer-menu-delete-backwards
  3996. Mark buffer on this line to be deleted by \[Buffer-menu-execute] command
  3997. and then move up one lineFBuffer-menu-save
  3998. Mark buffer on this line to be saved by \[Buffer-menu-execute] command.FBuffer-menu-not-modified
  3999. Mark buffer on this line as unmodified (no changes to save).FBuffer-menu-execute
  4000. Save and/or delete buffers marked with \[Buffer-menu-save] or \[Buffer-menu-delete] commands.FBuffer-menu-select
  4001. Select this line's buffer; also display buffers marked with ">".
  4002. You can mark buffers with the \[Buffer-menu-mark] command.FBuffer-menu-1-window
  4003. Select this line's buffer, alone, in full screen.FBuffer-menu-this-window
  4004. Select this line's buffer in this window.FBuffer-menu-other-window
  4005. Select this line's buffer in other window, leaving buffer menu visible.FBuffer-menu-2-window
  4006. Select this line's buffer, with previous buffer in second window.Fone-window-p
  4007. Returns non-nil if there is only one window.
  4008. Optional arg NOMINI non-nil means don't count the minibuffer
  4009. even if it is active.Fread-quoted-char
  4010. Like `read-char', except that if the first character read is an octal
  4011. digit, we read up to two more octal digits and return the character
  4012. represented by the octal number consisting of those digits.
  4013. Optional argument PROMPT specifies a string to use to prompt the user.Ferror
  4014. Signal an error, making error message by passing all args to `format'.Fsuppress-keymap
  4015. Make MAP override all buffer-modifying commands to be undefined.
  4016. Works by knowing which commands are normally buffer-modifying.
  4017. Normally also makes digits set numeric arg,
  4018. but optional second arg NODIGITS non-nil prevents this.Fsubstitute-key-definition
  4019. Replace OLDDEF with NEWDEF for any keys in KEYMAP now defined as OLDDEF.
  4020. In other words, OLDDEF is replaced with NEWDEF where ever it appears.Vglobal-map
  4021. Default global keymap mapping Emacs keyboard input into commands.
  4022. The value is a keymap which is usually (but not necessarily) Emacs's
  4023. global map.Vctl-x-map
  4024. Default keymap for C-x commands.
  4025. The normal global definition of the character C-x indirects to this keymap.Vesc-map
  4026. Default keymap for ESC (meta) commands.
  4027. The normal global definition of the character ESC indirects to this keymap.Vmouse-map
  4028. Keymap for mouse commands from the X window system.Frun-hooks
  4029. Takes hook names and runs each one in turn.  Major mode functions use this.
  4030. Each argument should be a symbol, a hook variable.
  4031. These symbols are processed in the order specified.
  4032. If a hook symbol has a non-nil value, that value may be a function
  4033. or a list of functions to be called to run the hook.
  4034. If the value is a function, it is called with no arguments.
  4035. If it is a list, the elements are called, in order, with no arguments.Fmomentary-string-display
  4036. Momentarily display STRING in the buffer at POS.
  4037. Display remains until next character is typed.
  4038. If the char is EXIT-CHAR (optional third arg, default is SPC) it is swallowed;
  4039. otherwise it is then available as input (as a command if nothing else).
  4040. Display MESSAGE (optional fourth arg) in the echo area.
  4041. If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there.Fundo-start
  4042. Move undo-pointer to front of undo records.
  4043. The next call to undo-more will undo the most recently made change.Fundo-more
  4044. Undo back N undo-boundaries beyond what was already undone recently.
  4045. Call undo-start to get ready to undo recent changes,
  4046. then call undo-more one or more times to undo them.Vemacs-version
  4047. Version numbers of this version of Emacs.Vemacs-build-time
  4048. Time at which Emacs was dumped out.Femacs-version
  4049. Return string describing the version of Emacs that is running.